@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lato", -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #222;
  line-height: 1.7;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

[hidden] {
  display: none !important;
}

a {
  color: #0033A0;
  text-decoration: none;
}
a:hover {
  color: #002878;
}

.container {
  max-width: 70vw;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 85vw;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.section {
  padding: 70px 0;
}
.section--light {
  background: #fff;
  color: #222;
}
.section--dark {
  position: relative;
  color: #f8fbff;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.section--dark .container {
  position: relative;
  z-index: 2;
}
.section--dark .container p {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.section--dark .subheading {
  color: #cdd6e6;
}

.heading {
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 6px;
  color: #111;
}
.heading strong {
  font-weight: 900;
}
.heading--light {
  color: #f8fbff;
}

.subheading {
  margin: 0 0 28px;
  color: #666;
  font-size: 1.1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 34px;
  text-align: center;
}

.col p {
  text-align: justify;
}
.col--image img {
  border-radius: 4px;
  width: 100%;
}
.col--image-border img {
  border: 1px solid #e4e4e4;
}

.separator {
  border: 0;
  height: 1px;
  max-width: 70vw;
  margin: 0 auto;
  background: linear-gradient(to right, transparent, #bbb, transparent);
}

.image-centered {
  margin-top: 24px;
}
.image-centered img {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  background: #0033A0;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 13px 28px;
  border-radius: 3px;
  transition: background 0.15s;
}
.btn:hover {
  background: #002878;
  color: #fff;
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
  .section--dark {
    background-attachment: scroll;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.top-bar {
  background: #f5f6f8;
  border-bottom: 1px solid #e4e4e4;
  font-size: 0.85rem;
}
.top-bar__inner {
  display: flex;
  justify-content: flex-end;
  padding-top: 6px;
  padding-bottom: 6px;
}
.top-bar__contact a {
  font-weight: 700;
}

.header-main__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.main-nav {
  margin-left: auto;
}
.main-nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 2px;
}
.main-nav a {
  display: block;
  padding: 10px 14px;
  color: #222;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-radius: 3px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a.active {
  background: #0033A0;
  color: #fff;
}

.header-phones {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.85rem;
  white-space: nowrap;
}
.header-phones a {
  color: #222;
  font-weight: 700;
}
.header-phones a:hover {
  color: #0033A0;
}

.ico-phone,
.header-phones a i,
.top-bar__contact a i {
  color: #0033A0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #0033A0;
  border-radius: 2px;
}

@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
  }
  .header-phones {
    display: none;
  }
  .main-nav {
    order: 3;
    flex-basis: 100%;
    margin-left: 0;
    display: none;
  }
  .main-nav.is-open {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav a {
    padding: 12px 10px;
    border-bottom: 1px solid #e4e4e4;
    border-radius: 0;
  }
  .header-main__inner {
    flex-wrap: wrap;
  }
  .logo {
    margin-right: auto;
  }
}
.site-footer {
  background: #060606;
  color: #cfd3da;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding: 54px 20px;
}

.footer-col h3 {
  color: #fff;
  font-size: 1.15rem;
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  background: #0033A0;
}
.footer-col strong {
  color: #fff;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-list li {
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #cfd3da;
  font-size: 1.05rem;
  transition: background 0.15s, color 0.15s;
}
.social-links a:hover {
  background: #0033A0;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer-logo img {
  height: 34px;
  width: auto;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #9aa0aa;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
body[data-page=home] .slider {
  position: relative;
  overflow: hidden;
  background: #eaeaea;
}
body[data-page=home] .slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0, 51, 160, 0.7);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: 1.4rem;
  width: 46px;
  height: 54px;
  line-height: 1;
  border-radius: 4px;
  transition: background 0.15s;
}
body[data-page=home] .slider__nav:hover {
  background: #0033A0;
}
body[data-page=home] .slider__nav--prev {
  left: 18px;
}
body[data-page=home] .slider__nav--next {
  right: 18px;
}
body[data-page=home] .slider__dots {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 10px;
}
body[data-page=home] .slider__dots button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
body[data-page=home] .slider__dots button.is-active {
  background: #fff;
}
body[data-page=home] .slides {
  position: relative;
  height: 560px;
}
body[data-page=home] .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  padding: 20px;
}
body[data-page=home] .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
body[data-page=home] .slide.is-active {
  opacity: 1;
  visibility: visible;
}
body[data-page=home] .slide__caption {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
  color: #fff;
}
body[data-page=home] .slide__caption h2 {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.25;
  background: rgba(0, 51, 160, 0.9);
  padding: 10px 22px;
}
body[data-page=home] .slide__caption p {
  margin: 0 auto 10px;
  font-size: 1.25rem;
  max-width: 680px;
  background: rgba(0, 51, 160, 0.9);
  padding: 8px 18px;
  display: inline-block;
}
body[data-page=home] .slide__badges {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
body[data-page=home] .slide__badges img {
  height: 84px;
  width: auto;
  background: #fff;
  border-radius: 0 0 14px 14px;
  padding: 6px;
}
body[data-page=home] .testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: left;
  margin-top: 20px;
}
body[data-page=home] .testimonial {
  position: relative;
  margin: 0;
  background: #f6f7f9;
  border-radius: 6px;
  padding: 26px 28px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
body[data-page=home] .testimonial blockquote {
  margin: 0;
  text-align: justify;
  color: #444;
  font-style: italic;
}
body[data-page=home] .testimonial blockquote::before {
  content: "“";
  color: #0033A0;
  font-size: 2.4rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}
body[data-page=home] .testimonial figcaption {
  margin-top: 16px;
  font-weight: 900;
  color: #0033A0;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  body[data-page=home] .slides {
    height: 440px;
  }
  body[data-page=home] .slide__caption h2 {
    font-size: 1.5rem;
  }
  body[data-page=home] .slide__caption p {
    font-size: 1rem;
  }
  body[data-page=home] .slide__badges img {
    height: 56px;
  }
  body[data-page=home] .testimonials {
    grid-template-columns: 1fr;
  }
}

body[data-page=about] .team-member__photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 3px solid #0033A0;
}
body[data-page=about] .team-member h3 {
  margin: 0 0 14px;
  color: #0033A0;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}
body[data-page=about] .team-member ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body[data-page=about] .team-member li {
  padding: 7px 0;
  border-bottom: 1px solid #e4e4e4;
}
body[data-page=about] .team-member li:last-child {
  border-bottom: 0;
}
body[data-page=about] .team-member strong {
  color: #111;
}

body[data-page=services] .check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
body[data-page=services] .check-list li {
  position: relative;
  padding: 6px 0 6px 30px;
}
body[data-page=services] .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: #0033A0;
  font-weight: 900;
}

body[data-page=specials] .specials-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}
body[data-page=specials] .specials-table th,
body[data-page=specials] .specials-table td {
  padding: 12px 20px;
  text-align: left;
  border: 1px solid #e4e4e4;
}
body[data-page=specials] .specials-table thead th {
  background: #d9e6f7;
  color: #111;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
body[data-page=specials] .specials-table tbody tr:nth-child(odd) {
  background: #fff;
}
body[data-page=specials] .specials-table tbody tr:nth-child(even) {
  background: #f6f7f9;
}
body[data-page=specials] .fine-print {
  max-width: 720px;
  margin: 28px auto 0;
  font-size: 0.875rem;
  color: #666;
}

body[data-page=contact] .contact-form .field {
  margin-bottom: 18px;
}
body[data-page=contact] .contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
body[data-page=contact] .contact-form input,
body[data-page=contact] .contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  font-family: inherit;
  font-size: 1rem;
  color: #222;
  background: #fff;
}
body[data-page=contact] .contact-form input:focus,
body[data-page=contact] .contact-form textarea:focus {
  outline: none;
  border-color: #0033A0;
}
body[data-page=contact] .contact-form textarea {
  resize: vertical;
  min-height: 170px;
}
body[data-page=contact] .contact-form__status {
  margin: 0;
  padding: 11px 14px;
  border-left: 3px solid #0033A0;
  background: #f4f7fa;
  font-size: 0.95rem;
}
body[data-page=contact] .map-embed {
  line-height: 0;
}
body[data-page=contact] .map-embed iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}
body[data-page=contact] .info-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}
body[data-page=contact] .info-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e4e4e4;
}
body[data-page=contact] .info-list li:last-child {
  border-bottom: 0;
}
body[data-page=contact] .info-list strong {
  color: #111;
}
body[data-page=contact] hr {
  margin: 2em 0 2em 0;
}

body[data-page=listings].modal-open {
  overflow: hidden;
}
body[data-page=listings] .listings-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 30px 0 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e4e4e4;
}
body[data-page=listings] .listings-count {
  margin: 0;
  font-weight: 700;
  color: #111;
}
body[data-page=listings] .listings-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}
body[data-page=listings] .listings-sort label {
  font-weight: 700;
  color: #666;
}
body[data-page=listings] .listings-sort select {
  padding: 9px 12px;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #222;
  background: #fff;
  cursor: pointer;
}
body[data-page=listings] .listings-status {
  text-align: center;
  color: #666;
  padding: 40px 0;
}
body[data-page=listings] .listing-row {
  display: grid;
  grid-template-columns: 28vw 1fr;
  gap: 26px;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}
body[data-page=listings] .listing-row__image {
  position: relative;
  min-height: 210px;
  background: #f6f7f9;
}
body[data-page=listings] .listing-row__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body[data-page=listings] .listing-row__badge {
  position: absolute;
  top: 14px;
  left: 0;
  z-index: 2;
  background: #0033A0;
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 6px 14px;
}
body[data-page=listings] .listing-row__body {
  padding: 22px 26px 22px 0;
  display: flex;
  flex-direction: column;
}
body[data-page=listings] .listing-row__title {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
  color: #111;
  text-transform: uppercase;
  line-height: 1.3;
}
body[data-page=listings] .listing-row__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
body[data-page=listings] .listing-row__price-reg {
  color: #666;
  text-decoration: line-through;
  font-size: 0.95rem;
}
body[data-page=listings] .listing-row__price-now {
  color: #0033A0;
  font-weight: 900;
  font-size: 1.5rem;
}
body[data-page=listings] .listing-row__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
  margin: 16px 0;
  padding: 16px 0;
  border-top: 1px solid #e4e4e4;
}
body[data-page=listings] .listing-row__spec {
  display: flex;
  flex-direction: column;
}
body[data-page=listings] .listing-row__spec .name {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #666;
}
body[data-page=listings] .listing-row__spec .value {
  font-weight: 700;
  color: #111;
  font-size: 0.95rem;
}
body[data-page=listings] .listing-row__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #e4e4e4;
}
body[data-page=listings] .listing-row__buy {
  flex: 0 0 auto;
  margin-left: auto;
  white-space: nowrap;
}
body[data-page=listings] .listing-row__buy i {
  margin-right: 6px;
}
body[data-page=listings] .listing-row__stock {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
}
body[data-page=listings] .listing-row__image.is-clickable {
  cursor: pointer;
}
body[data-page=listings] .listing-row__title.is-clickable {
  cursor: pointer;
}
body[data-page=listings] .listing-row__title.is-clickable:hover {
  color: #0033A0;
}
body[data-page=listings] .listing-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
body[data-page=listings] .listing-modal[hidden] {
  display: none;
}
body[data-page=listings] .listing-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
body[data-page=listings] .listing-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(260px, 30%, 360px);
  align-items: stretch;
  width: min(72vw, 100%);
  max-height: 85vh;
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
body[data-page=listings] .listing-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 6;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  transition: background 0.15s, transform 0.15s;
}
body[data-page=listings] .listing-modal__close:hover {
  background: #0033A0;
  transform: scale(1.05);
}
body[data-page=listings] .listing-modal__carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 85vh;
  background: #111;
}
body[data-page=listings] .listing-modal__badge {
  position: absolute;
  top: 14px;
  left: 0;
  z-index: 4;
  background: #0033A0;
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 6px 14px;
}
body[data-page=listings] .listing-modal__slides {
  position: absolute;
  inset: 0;
}
body[data-page=listings] .listing-modal__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
body[data-page=listings] .listing-modal__slide.is-active {
  opacity: 1;
  visibility: visible;
}
body[data-page=listings] .listing-modal__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body[data-page=listings] .listing-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0, 51, 160, 0.7);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: 1.2rem;
  width: 40px;
  height: 48px;
  line-height: 1;
  border-radius: 4px;
  transition: background 0.15s;
}
body[data-page=listings] .listing-modal__nav:hover {
  background: #0033A0;
}
body[data-page=listings] .listing-modal__nav--prev {
  left: 14px;
}
body[data-page=listings] .listing-modal__nav--next {
  right: 14px;
}
body[data-page=listings] .listing-modal__dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 10px;
}
body[data-page=listings] .listing-modal__dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
body[data-page=listings] .listing-modal__dots button.is-active {
  background: #fff;
}
body[data-page=listings] .listing-modal__body {
  flex: 1;
  min-height: 0;
  max-height: 85vh;
  padding: 26px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
body[data-page=listings] .listing-modal__title {
  margin: 0 0 10px;
  padding-right: 44px;
  font-size: 1.35rem;
  font-weight: 900;
  color: #111;
  text-transform: uppercase;
  line-height: 1.3;
}
body[data-page=listings] .listing-modal__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
body[data-page=listings] .listing-modal__price-reg {
  color: #666;
  text-decoration: line-through;
  font-size: 0.95rem;
}
body[data-page=listings] .listing-modal__price-now {
  color: #0033A0;
  font-weight: 900;
  font-size: 1.6rem;
}
body[data-page=listings] .listing-modal__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
  margin: 16px 0;
  padding: 16px 0;
  border-top: 1px solid #e4e4e4;
}
body[data-page=listings] .listing-modal__specs .is-wide {
  grid-column: 1/-1;
}
body[data-page=listings] .listing-modal__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #e4e4e4;
}
body[data-page=listings] .listing-modal__buy {
  flex: 1 0 auto;
  text-align: center;
  white-space: nowrap;
}
body[data-page=listings] .listing-modal__buy i {
  margin-right: 6px;
}
body[data-page=listings] .listing-modal__stock {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
}
body[data-page=listings] .pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}
body[data-page=listings] .pagination button {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  background: #fff;
  color: #222;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
body[data-page=listings] .pagination button:hover:not(:disabled) {
  border-color: #0033A0;
  color: #0033A0;
}
body[data-page=listings] .pagination button.is-active {
  background: #0033A0;
  border-color: #0033A0;
  color: #fff;
}
body[data-page=listings] .pagination button:disabled {
  opacity: 0.4;
  cursor: default;
}
@media (max-width: 768px) {
  body[data-page=listings] .listing-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  body[data-page=listings] .listing-row__image {
    min-height: 200px;
  }
  body[data-page=listings] .listing-row__body {
    padding: 20px;
  }
  body[data-page=listings] .listing-row__specs {
    grid-template-columns: repeat(2, 1fr);
  }
  body[data-page=listings] .listing-modal {
    padding: 0;
  }
  body[data-page=listings] .listing-modal__dialog {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  body[data-page=listings] .listing-modal__title {
    padding-right: 0;
  }
  body[data-page=listings] .listing-modal__body {
    max-height: none;
  }
}

.wa-fab {
  position: fixed;
  right: calc(24px + env(safe-area-inset-right, 0px));
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 900;
  display: inline-flex;
  align-items: center;
  height: 56px;
  border-radius: 28px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  animation: wa-fab-in 0.4s ease both;
}
.wa-fab i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  font-size: 1.6rem;
}
.wa-fab__label {
  max-width: 0;
  padding-right: 0;
  opacity: 0;
  font-weight: 700;
  transition: max-width 0.25s ease, padding-right 0.25s ease, opacity 0.25s ease;
}
.wa-fab.is-expanded .wa-fab__label {
  max-width: 160px;
  padding-right: 22px;
  opacity: 1;
}
.wa-fab:focus-visible {
  outline: 3px solid #0033A0;
  outline-offset: 2px;
}

body.modal-open .wa-fab {
  display: none;
}

.wa-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
}
.wa-contact .wa-contact-link {
  background: #25D366;
}
.wa-contact .wa-contact-link i {
  margin-right: 6px;
}

@keyframes wa-fab-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab {
    animation: none;
  }
  .wa-fab__label {
    transition: none;
  }
}

/*# sourceMappingURL=styles.css.map */
