.pc-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  font-size: 14px;
  color: var(--pc-muted);
}

.pc-pagination a {
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--pc-line);
  border-radius: 9px;
  color: var(--pc-brand);
  font-weight: 600;
  text-decoration: none;
}

.pc-mobile-contact {
  display: none;
}

.pc-panel-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}

.pc-panel-heading > span,
.pc-feature-icon,
.pc-amenity > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--pc-brand);
  background: #f0efff;
  border-radius: 10px;
}

.pc-panel-heading > span {
  width: 40px;
  height: 40px;
}

.pc-panel-heading svg {
  width: 20px;
}

.pc-panel-heading h2 {
  margin: 0 0 2px;
}

.pc-panel-heading p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 14px;
}

.pc-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.pc-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid var(--pc-line);
  border-radius: 12px;
  background: #fcfcfe;
}

.pc-feature-icon {
  width: 38px;
  height: 38px;
}

.pc-feature-icon svg,
.pc-amenity svg {
  width: 18px;
}

.pc-feature-item dt {
  color: var(--pc-muted);
  font-size: 12px;
}

.pc-feature-item dd {
  margin: 2px 0 0;
  font-weight: 700;
}

.pc-amenities-block {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--pc-line);
}

.pc-amenities-block h3 {
  margin: 0 0 13px;
  font-size: 16px;
}

.pc-amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.pc-amenity {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 10px;
  border-radius: 10px;
  background: var(--pc-soft);
  font-size: 13px;
}

.pc-amenity > span {
  width: 32px;
  height: 32px;
  background: #fff;
}

.pc-amenity strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.pc-map-frame {
  overflow: hidden;
  height: 360px;
  border: 1px solid var(--pc-line);
  border-radius: 12px;
  background: var(--pc-soft);
}

.pc-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.pc-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 13px;
  color: var(--pc-muted);
  font-size: 13px;
}

.pc-map-footer span,
.pc-map-footer a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.pc-map-footer svg {
  width: 16px;
  flex: 0 0 auto;
}

.pc-map-footer a {
  color: var(--pc-brand);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.pc-phone-field {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
}

.pc-phone-field select,
.pc-phone-field input {
  min-width: 0;
  border: 1px solid #d6d9e3;
  background: #fff;
  color: var(--pc-ink);
  font: inherit;
  outline: none;
}

.pc-phone-field select {
  border-radius: 10px 0 0 10px;
  padding: 11px 8px;
}

.pc-phone-field input {
  border-left: 0;
  border-radius: 0 10px 10px 0;
  padding: 11px 12px;
}

.pc-phone-field:focus-within select,
.pc-phone-field:focus-within input {
  border-color: var(--pc-brand);
}

.pc-phone-field:focus-within {
  border-radius: 10px;
  box-shadow: 0 0 0 3px rgba(74, 67, 243, .1);
}

.pc-contact-form .pc-field-label {
  display: inline;
  color: var(--pc-ink);
}

.pc-contact-form .pc-field-label em {
  color: var(--pc-danger);
  font-style: normal;
}

.pc-gallery-main {
  position: relative;
}

.pc-gallery-arrow,
.pc-gallery-expand,
.pc-lightbox-close,
.pc-lightbox-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: rgba(23, 24, 47, .78);
  cursor: pointer;
  transition: background-color .16s ease, transform .16s ease;
}

.pc-gallery-arrow:hover,
.pc-gallery-expand:hover,
.pc-lightbox-close:hover,
.pc-lightbox-arrow:hover {
  background: rgba(23, 24, 47, .94);
}

.pc-gallery-arrow:focus-visible,
.pc-gallery-expand:focus-visible,
.pc-lightbox-close:focus-visible,
.pc-lightbox-arrow:focus-visible,
.pc-gallery-thumb:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.pc-gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.pc-gallery-arrow:hover {
  transform: translateY(-50%) scale(1.04);
}

.pc-gallery-arrow.is-prev {
  left: 14px;
}

.pc-gallery-arrow.is-next {
  right: 14px;
}

.pc-gallery-arrow svg,
.pc-lightbox-arrow svg {
  width: 23px;
  height: 23px;
}

.pc-gallery-expand {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  gap: 7px;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 9px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.pc-gallery-expand svg {
  width: 17px;
  height: 17px;
}

.pc-gallery-count,
.pc-lightbox-count {
  color: #fff;
  background: rgba(23, 24, 47, .78);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.pc-gallery-count {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 5px 9px;
  border-radius: 7px;
}

.pc-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(10, 11, 20, .96);
}

.pc-lightbox::backdrop {
  background: rgba(10, 11, 20, .96);
}

.pc-lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 60px 76px;
}

.pc-lightbox-stage img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pc-lightbox-close,
.pc-lightbox-arrow {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.pc-lightbox-close {
  top: 20px;
  right: 22px;
  width: 44px;
  height: 44px;
}

.pc-lightbox-close svg {
  width: 21px;
  height: 21px;
}

.pc-lightbox-arrow {
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
}

.pc-lightbox-arrow:hover {
  transform: translateY(-50%) scale(1.04);
}

.pc-lightbox-arrow.is-prev {
  left: 18px;
}

.pc-lightbox-arrow.is-next {
  right: 18px;
}

.pc-lightbox-count {
  position: absolute;
  bottom: 22px;
  left: 50%;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  transform: translateX(-50%);
}

@media (max-width: 900px) {
  body {
    padding-bottom: 72px;
  }

  .pc-mobile-contact {
    position: fixed;
    z-index: 20;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border-radius: 11px;
    background: var(--pc-brand);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
  }

  .pc-mobile-contact svg {
    width: 18px;
  }

  .pc-amenity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .pc-gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .pc-gallery-arrow.is-prev {
    left: 9px;
  }

  .pc-gallery-arrow.is-next {
    right: 9px;
  }

  .pc-gallery-expand {
    top: 9px;
    right: 9px;
    width: 40px;
    min-height: 40px;
    padding: 0;
  }

  .pc-gallery-expand span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .pc-gallery-count {
    right: 9px;
    bottom: 9px;
  }

  .pc-lightbox-stage {
    padding: 58px 14px 70px;
  }

  .pc-lightbox-close {
    top: 12px;
    right: 12px;
  }

  .pc-lightbox-arrow {
    top: auto;
    bottom: 14px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .pc-lightbox-arrow:hover {
    transform: scale(1.04);
  }

  .pc-lightbox-arrow.is-prev {
    left: 14px;
  }

  .pc-lightbox-arrow.is-next {
    right: 14px;
  }

  .pc-lightbox-count {
    bottom: 21px;
  }

  .pc-feature-grid,
  .pc-amenity-grid {
    grid-template-columns: 1fr;
  }

  .pc-map-frame {
    height: 270px;
  }

  .pc-map-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
