:root {
  --joie-yellow: #F2A900;
  --joie-yellow-dark: #D89500;
  --joie-blue: #407EC9;
  --text-main: #4F4F4F;
  --text-muted: #666B72;
  --text-soft: #8A8F96;
  --line: #E9EAEC;
  --surface: #FFFFFF;
  --surface-soft: #F8F8F7;
  --surface-warm: #FFF8E7;
  --shadow: 0 14px 34px rgba(35, 37, 41, 0.08);
  --content-width: 880px;
  --page-padding-x: 22px;
  --header-logo-height: 38px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  min-height: 100vh;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--surface);
  color: var(--text-main);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.top-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  padding: 13px var(--page-padding-x);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.header-content {
  max-width: var(--content-width);
  min-height: var(--header-logo-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-container {
  height: var(--header-logo-height);
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo-container img {
  display: block;
  height: 100%;
  width: auto;
  max-width: min(180px, 48vw);
}

.language-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.lang-btn {
  min-width: 44px;
  padding: 7px 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
  text-align: center;
}

.lang-btn:hover {
  color: var(--text-main);
  background: var(--surface-soft);
}

.lang-btn.active {
  background: var(--surface-soft);
  color: var(--text-main);
  box-shadow: none;
}

.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 34px var(--page-padding-x) 20px;
  flex: 1 0 auto;
}

.hero {
  margin-bottom: 22px;
}

h1 {
  color: var(--text-main);
  margin-bottom: 5px;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.subtitle {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 20px;
  max-width: 720px;
}

.search-section {
  background: linear-gradient(180deg, #fff 0%, #fffaf0 100%);
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.input-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  margin-bottom: 12px;
}

input[type="text"] {
  width: 100%;
  min-width: 0;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input[type="text"]:focus {
  outline: none;
  border-color: var(--joie-yellow);
  box-shadow: 0 0 0 4px rgba(242, 169, 0, .13);
}

input[type="text"]::placeholder {
  color: #9A9EA5;
}

button {
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s ease;
}

button:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--joie-yellow);
  color: #fff;
}

.btn-primary:hover {
  background: var(--joie-yellow-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--text-muted);
  border: 1px solid #D8DADE;
}

.btn-secondary:hover {
  background: var(--surface-soft);
  color: var(--text-main);
  border-color: #4F4F4F;
}

.btn-location {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--joie-blue);
  color: #fff;
  font-weight: 700;
}

.btn-location:hover {
  background: #2E66AA;
}

.btn-location:disabled {
  background: var(--line);
  color: #999;
  cursor: not-allowed;
  transform: none;
}

.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: block;
}

.location-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.2;
}

.status-message {
  padding: 12px 15px;
  border-radius: 8px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
}

.status-info {
  background: #EAF4FC;
  color: var(--joie-blue);
  border-left: 4px solid var(--joie-blue);
}

.status-error {
  background: #FFF0F0;
  color: #B42318;
  border-left: 4px solid #D92D20;
}

.status-success {
  background: #FFF7E1;
  color: #946300;
  border-left: 4px solid var(--joie-yellow);
}

.map-section {
  margin-bottom: 18px;
  border: 1px solid rgba(233, 234, 236, .95);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf7 0%, #fff 100%);
  box-shadow: 0 18px 42px rgba(35, 37, 41, .09);
}

.map-toolbar {
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 13px 12px 18px;
  border-bottom: 1px solid rgba(233, 234, 236, .95);
  background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 250, 240, .96) 100%);
}

.map-summary-line {
  min-width: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.map-eyebrow {
  color: var(--joie-yellow-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.map-count {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 800;
}

.map-toggle-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid #D8DADE;
  border-radius: 999px;
  background: #fff;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(35, 37, 41, .05);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.map-toggle-button::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}

.map-section.is-collapsed .map-toggle-button::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.map-toggle-button:hover {
  transform: translateY(-1px);
  border-color: var(--text-main);
  background: var(--surface-soft);
  color: var(--text-main);
  box-shadow: 0 10px 22px rgba(35, 37, 41, .08);
}

.map-toggle-button:focus-visible {
  outline: 3px solid rgba(242, 169, 0, .26);
  outline-offset: 2px;
}

.map-fit-button {
  padding: 10px 14px;
  border: 1px solid #D8DADE;
  background: #fff;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(35, 37, 41, .05);
}

.map-fit-button:hover {
  border-color: var(--text-main);
  background: var(--surface-soft);
}

.map-fit-button:disabled {
  cursor: default;
  opacity: .58;
  transform: none;
}

.map-fit-button:disabled:hover {
  border-color: #D8DADE;
  background: #fff;
}

.map-panel {
  max-height: 540px;
  overflow: hidden;
  opacity: 1;
  transition: max-height .28s ease, opacity .2s ease;
}

.map-section.is-collapsed .map-toolbar {
  border-bottom-color: transparent;
}

.map-section.is-collapsed .map-panel {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.store-map {
  width: 100%;
  height: min(54vh, 500px);
  min-height: 390px;
  background: linear-gradient(180deg, #DCEEF7 0%, #F6F0DF 100%);
  z-index: 1;
}

.leaflet-container {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-main);
  background: #DCEEF7;
}

.store-map .leaflet-tile-pane {
  filter: saturate(.92) brightness(1.04) contrast(.94);
  opacity: .99;
}


.store-map .leaflet-bottom.leaflet-left:has(.leaflet-control-attribution) {
  left: auto !important;
  right: 15px !important;
  bottom: 12px !important;
}

.store-map .leaflet-bottom.leaflet-right {
  right: 12px !important;
  bottom: 0px !important;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.store-map .leaflet-bottom.leaflet-right .leaflet-control {
  margin: 0 !important;
}

.leaflet-control-attribution {
  order: 2;
  max-width: min(62vw, 310px);
  padding: 2px 7px !important;
  border: 0 !important;
  border-radius: 3px !important;
  background: rgba(255, 255, 255, .68) !important;
  color: rgba(79, 79, 79, .64) !important;
  box-shadow: 0 4px 12px rgba(35, 37, 41, .06) !important;
  backdrop-filter: blur(4px);
  font-size: 8px !important;
  font-weight: 500;
  line-height: 1.35 !important;
  opacity: .82;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity .2s ease, background-color .2s ease, color .2s ease;
}

.leaflet-control-attribution:hover,
.leaflet-control-attribution:focus-within {
  background: rgba(255, 255, 255, .94) !important;
  color: rgba(79, 79, 79, .9) !important;
  opacity: 1;
}

.leaflet-control-attribution a {
  color: inherit !important;
  text-decoration: none;
}

.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus-visible {
  color: var(--text-main) !important;
  text-decoration: underline;
}

.leaflet-bar {
  overflow: hidden;
  border: 0 !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 28px rgba(35, 37, 41, .16) !important;
}


.store-map .leaflet-control-zoom {
  order: 1;
  margin: 0 !important;
}

.leaflet-control-zoom a {
  width: 39px !important;
  height: 39px !important;
  line-height: 39px !important;
  border: 0 !important;
  background: rgba(255, 255, 255, .97) !important;
  color: var(--text-main) !important;
  font-size: 20px !important;
  font-weight: 800;
  transition: background-color .2s ease, color .2s ease;
}

.leaflet-control-zoom a + a {
  border-top: 1px solid var(--line) !important;
}

.leaflet-control-zoom a:hover,
.leaflet-control-zoom a:focus-visible {
  background: var(--surface-warm) !important;
  color: var(--joie-yellow-dark) !important;
}

.leaflet-popup-content-wrapper {
  border: 1px solid rgba(233, 234, 236, .95);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(35, 37, 41, .18);
}

.leaflet-popup-content {
  margin: 18px 18px 18px;
  padding-right: 18px;
}

.leaflet-popup-tip {
  box-shadow: none;
}

.leaflet-container a.leaflet-popup-close-button {
  top: 10px !important;
  right: 10px !important;
  width: 28px !important;
  height: 28px !important;
  padding: 0 !important;
  border: 1px solid rgba(216, 218, 222, .95) !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, .96) !important;
  color: var(--text-muted) !important;
  display: grid !important;
  place-items: center !important;
  position: absolute !important;
  overflow: hidden;
  font-size: 0 !important;
  line-height: 0 !important;
  box-shadow: 0 5px 12px rgba(35, 37, 41, .08);
}

.leaflet-container a.leaflet-popup-close-button::before,
.leaflet-container a.leaflet-popup-close-button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.leaflet-container a.leaflet-popup-close-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.leaflet-container a.leaflet-popup-close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus-visible {
  background: var(--surface-soft) !important;
  color: var(--text-main) !important;
  transform: none;
}

.joie-map-marker {
  background: transparent;
  border: 0;
}

.joie-map-marker-pin {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--joie-yellow);
  transform: rotate(-45deg);
  box-shadow: 0 12px 26px rgba(35, 37, 41, .25);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.joie-map-marker-pin::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}

.joie-map-marker.is-active .joie-map-marker-pin,
.joie-map-marker:hover .joie-map-marker-pin {
  background: var(--joie-blue);
  transform: rotate(-45deg) scale(1.12);
  box-shadow: 0 16px 32px rgba(64, 126, 201, .34);
}

.joie-reference-marker span {
  display: block;
  width: 24px;
  height: 24px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: var(--joie-blue);
  box-shadow: 0 0 0 6px rgba(64, 126, 201, .20), 0 8px 20px rgba(35, 37, 41, .18);
}

.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
  background: rgba(242, 169, 0, .22);
}

.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
  background: var(--joie-yellow);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(242, 169, 0, .22);
}

.map-popup {
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-main);
}

.map-popup strong {
  font-size: 16px;
  line-height: 1.25;
}

.map-popup span {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.map-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}

.map-popup-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid;
  text-align: center;
  transition: all .2s ease;
}

.map-popup-actions a:hover {
  transform: translateY(-1px);
}

.map-popup-actions .btn-maps {
  background: var(--joie-yellow);
  color: #fff;
  border-color: var(--joie-yellow);
}

.map-popup-actions .btn-maps:hover {
  background: var(--joie-yellow-dark);
  color: #fff;
  border-color: var(--joie-yellow-dark);
}

.map-popup-actions .btn-website {
  background: #fff;
  color: var(--text-muted);
  border-color: #666B72;
}

.map-popup-actions .btn-website:hover {
  background: var(--surface-soft);
  color: var(--text-main);
  border-color: #4F4F4F;
}

.store-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.store-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  cursor: pointer;
}

.store-card:hover,
.store-card:focus-visible {
  border-color: rgba(242, 169, 0, .65);
  box-shadow: 0 12px 28px rgba(242, 169, 0, .12);
  transform: translateY(-1px);
  outline: none;
}

.store-card.is-active {
  border-color: var(--joie-blue);
  box-shadow: 0 14px 30px rgba(64, 126, 201, .12);
}

.store-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}

.store-title-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.pin-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  color: var(--joie-yellow);
  margin-top: -2px;
  filter: drop-shadow(0 5px 8px rgba(242, 169, 0, .20));
}

.store-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.store-distance {
  background: var(--joie-blue);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.store-address {
  color: var(--text-muted);
  margin: 0 0 15px 35px;
  font-size: 14px;
  line-height: 1.5;
}

.store-actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-left: 35px;
}

.store-actions a {
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid;
  text-align: center;
  transition: all .2s ease;
}

.store-actions a:hover {
  transform: translateY(-1px);
}

.btn-maps {
  background: var(--joie-yellow);
  color: #fff;
  border-color: var(--joie-yellow);
}

.btn-maps:hover {
  background: var(--joie-yellow-dark);
  border-color: var(--joie-yellow-dark);
}

.btn-website {
  background: #fff;
  color: var(--text-muted);
  border-color: #666B72;
}

.btn-website:hover {
  background: var(--surface-soft);
  color: var(--text-main);
  border-color: #4F4F4F;
}

.loading,
.no-results {
  text-align: center;
  padding: 42px 22px;
  color: var(--text-soft);
  background: var(--surface-soft);
  border-radius: 18px;
  border: 1px solid var(--line);
  font-weight: 700;
}

.instagram-section {
  width: 100%;
  max-width: var(--content-width);
  margin: 44px auto 0;
  padding: 0 var(--page-padding-x);
}

.instagram-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, #fff4d4 0%, #fff 46%, #f7f7f7 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.instagram-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #F2A900, #E4405F 55%, #833AB4);
  box-shadow: 0 14px 28px rgba(228, 64, 95, .20);
}

.instagram-icon {
  width: 30px;
  height: 30px;
}

.instagram-title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-main);
}

.instagram-text {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 560px;
}

.instagram-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--joie-blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: all .2s ease;
}

.instagram-cta:hover {
  background: #2E66AA;
  transform: translateY(-1px);
}

.site-footer {
  margin-top: 28px;
  padding: 36px var(--page-padding-x);
  background: var(--surface-soft);
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
  flex-shrink: 0;
}

.footer-content {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.footer-logo {
  display: block;
  height: 20px;
  width: auto;
  margin-top: 3px;
  filter: grayscale(100%) contrast(110%);
  opacity: .64;
}

.footer-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-official {
  color: #74787F;
  font-weight: 700;
  margin-bottom: 2px;
}

.footer-disclaimer {
  color: var(--text-soft);
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 11px;
  color: #A5A9AF;
}

.footer-links a {
  color: #74787F;
  border-bottom: 1px solid #D0D3D7;
}

.footer-links a:hover {
  color: var(--joie-yellow-dark);
  border-bottom-color: var(--joie-yellow-dark);
}

.footer-separator {
  color: #B8BBC1;
}

@media (max-width: 720px) {
  :root {
    --page-padding-x: 16px;
    --header-logo-height: 33px;
  }

  .top-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-content {
    position: relative;
    justify-content: center;
  }

  .logo-container {
    position: absolute;
    left: 0;
  }

  .language-switch {
    position: absolute;
    right: 0;
    margin: 0;
  }

  .container {
    padding-top: 24px;
  }

  .subtitle {
    font-size: 16px;
  }

  .search-section {
    padding: 14px;
    border-radius: 16px;
  }

  .input-group {
    grid-template-columns: 1fr 1fr;
  }

  .input-group input[type="text"] {
    grid-column: 1 / -1;
  }

  .btn-secondary,
  .btn-primary {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .map-section {
    border-radius: 18px;
  }

  .map-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 11px 12px;
  }

  .map-summary-line {
    gap: 6px;
  }

  .map-count {
    display: none;
  }

  .map-toggle-button {
    padding: 9px 16px;
    font-size: 13px;
  }

  .map-fit-button {
    grid-column: 1 / -1;
    width: 100%;
    padding: 10px 12px;
  }

  .store-map {
    height: 330px;
    min-height: 300px;
  }

  
.store-map .leaflet-control-zoom {
  order: 1;
  margin: 0 !important;
}

.leaflet-control-zoom a {
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
  }

  .store-card {
    padding: 17px;
    border-radius: 16px;
  }

  .store-header {
    flex-direction: column;
    gap: 8px;
  }

  .store-distance {
    align-self: flex-start;
    margin-left: 38px;
  }

  .store-actions {
    margin-left: 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-address {
    margin-left: 38px;
  }

  .instagram-card {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 20px;
  }

  .instagram-cta {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 12px;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-body {
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }

  .site-footer {
    margin-top: 24px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (max-width: 420px) {
  .map-toolbar {
    gap: 8px;
  }

  .map-toggle-button {
    padding: 8px 16px;
    font-size: 12px;
  }

  .map-toggle-button::after {
    width: 6px;
    height: 6px;
  }

  .leaflet-control-attribution {
    max-width: calc(100vw - 96px);
    font-size: 7px !important;
  }

  .store-map .leaflet-control-zoom {
    margin: 0 !important;
  }

  .store-map {
    height: 300px;
    min-height: 280px;
  }

  .header-content {
    gap: 10px;
  }

  .lang-btn {
    min-width: 39px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .store-title-row {
    gap: 8px;
  }

  .pin-icon {
    width: 25px;
    height: 25px;
  }

  .store-address,
  .store-distance {
    margin-left: 33px;
  }
}
