#customPageTitle {
  display: none;
}

.customPageCenteredContent {
  width: 100% !important;
  min-width: 0;
  max-width: unset;
  margin-bottom: 0;
}

.contactContainer {
  width: min(100%, 480px);
  min-height: calc(100vh - var(--menu-height));
  margin: 0 auto;
  padding: 0 0 108px;
  box-sizing: border-box;
  color: var(--base);
}

.extraTitle {
  height: auto;
  margin: 0 0 38px;
  color: var(--base);
  font-size: 26px;
  line-height: 22px;
  font-weight: 600;
  text-align: center;
}

.contactDiv {
  width: 480px;
  margin: 0;
  display: grid;
  gap: 6px;
  float: none;
}

.contactInput {
  width: 480px;
  height: 60px;
  margin: 0;
  padding: 0 11px;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  background: transparent;
  color: var(--base);
  font-size: 12px;
  line-height: 14px;
  box-sizing: border-box;
}

.contactInput:focus {
  border-color: var(--base);
  outline: none;
}

.contactInput::placeholder {
  color: var(--base);
  opacity: 0.55;
}

textarea.contactInput.contactTextarea {
  width: 480px;
  height: 189px;
  padding-top: 11px;
  resize: none;
}

.sendContact {
  width: 480px;
  height: 52px;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-2);
  border: 1px solid var(--secondary-2);
  color: var(--button-font-color);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
  box-sizing: border-box;
}

.sendContact:hover {
  background: var(--base-aux);
  color: var(--secondary-2);
}

.storesSection {
  position: relative;
  width: 100%;
  /* margin: 0 0 64px; */
  padding: 66px calc((100% - var(--web-container)) / 2) 64px;
  background: var(--shops-background);
  box-sizing: border-box;
  color: var(--base);
  scroll-margin-top: calc(var(--menu-height) + 24px);
}

.storesAnchor {
  width: 100%;
  height: 1px;
  scroll-margin-top: 192px;
}

.storesTitle {
  margin: 0 0 27px;
  font-size: 32px;
  line-height: 36px;
  font-weight: 500;
}

.storesGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 16px;
}

.storeCard {
  min-width: 0;
}

.storeMap {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  margin-bottom: 13px;
  border: 0;
  height: 217px;
  width: 308px;
}

.storeMap {
}

.storeCard h3,
.storeCard p {
  margin: 0;
  color: var(--base);
  font-size: 14px;
  line-height: 20px;
  width: 100%;
}

.storeCard h3 {
  margin-bottom: 2px;
  font-weight: 600;
}

.storeCard p {
  font-weight: 400;
}

@media screen and (max-width: 1100px) {
  .contactContainer {
    width: auto;
    margin: 0 20px;
    padding: 34px 0 64px;
  }

  .contactDiv,
  .contactInput,
  textarea.contactInput.contactTextarea,
  .sendContact {
    width: 100%;
  }

  .extraTitle {
    margin-bottom: 24px;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
  }

  .storesSection {
    width: 100%;
    max-width: none;
    /* margin: 0 0 48px; */
    padding: 20px 15px 48px;
  }

  .storesTitle {
    font-size: 22px;
    line-height: 48px;
    text-align: center;
    font-weight: 600;
  }

  .storesAnchor {
    scroll-margin-top: 119px;
  }

  .storesGrid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px 12px;
  }

  @media screen and (max-width: 768px) {

    .contactContainer {
      width: auto;
      margin: 0 20px;
      padding: 0 0 64px;
    }

    .storeMap {
      width: 343px;
      height: 217px;
      margin-bottom: 20px;
    }

  }
}