:root {
  --green-950: #061b16;
  --green-900: #09261e;
  --green-800: #12372d;
  --green-700: #1c493c;
  --sand-50: #faf8f3;
  --sand-100: #f2eee4;
  --sand-200: #e5ddcf;
  --white: #ffffff;
  --text: #13221d;
  --muted: #6b7772;
  --accent: #d7b98b;
  --danger: #b5483f;
  --shadow: 0 18px 50px rgba(9, 38, 30, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--sand-50);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--sand-50);
  color: var(--text);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

button,
input,
select {
  font: inherit;
}

.hero {
  padding:
    calc(22px + env(safe-area-inset-top))
    20px
    88px;
  background:
    radial-gradient(
      circle at 90% 0,
      rgba(215, 185, 139, 0.18),
      transparent 34%
    ),
    linear-gradient(150deg, var(--green-900), var(--green-950));
  color: var(--white);
}

.hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto 52px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 25px;
}

.brand__name {
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1;
}

.brand__caption {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__badge {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.hero__content {
  max-width: 1080px;
  margin: 0 auto;
}

.hero__eyebrow,
.section-eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 12px 0 16px;
  font-family: Georgia, serif;
  font-size: clamp(36px, 8vw, 62px);
  font-weight: 400;
  line-height: 1.02;
}

.hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
}

main {
  width: min(1080px, calc(100% - 28px));
  margin: -52px auto 0;
  padding-bottom: calc(80px + env(safe-area-inset-bottom));
}

.search-panel {
  padding: 22px;
  border: 1px solid rgba(9, 38, 30, 0.06);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-grid + .field-grid,
.field-grid + .field,
.field + .search-button {
  margin-top: 12px;
}

.field {
  display: block;
}

.field span {
  display: block;
  margin: 0 0 7px 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.field input,
.field select {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid var(--sand-200);
  border-radius: 14px;
  outline: none;
  background: var(--sand-50);
  color: var(--text);
}

.field input:focus,
.field select:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(28, 73, 60, 0.1);
}

.search-button {
  display: flex;
  width: 100%;
  height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 0;
  border-radius: 15px;
  background: var(--green-900);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
}

.search-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.search-button__arrow {
  font-size: 24px;
}

.search-hint {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.results-section {
  padding-top: 38px;
}

.results-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.results-header h2 {
  margin: 5px 0 0;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.results-count {
  color: var(--muted);
  font-size: 13px;
}

.status {
  padding: 26px 18px;
  border: 1px dashed var(--sand-200);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.status--error {
  border-color: rgba(181, 72, 63, 0.25);
  color: var(--danger);
}

.results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.property-card {
  overflow: hidden;
  border: 1px solid rgba(9, 38, 30, 0.07);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(9, 38, 30, 0.07);
  cursor: pointer;
}

.property-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand-100);
}

.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-card__area {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  width: fit-content;
  max-width: calc(100% - 24px);
  overflow: hidden;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(6, 27, 22, 0.82);
  color: var(--white);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.property-card__body {
  padding: 16px;
}

.property-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.property-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.fact {
  padding: 6px 9px;
  border-radius: 9px;
  background: var(--sand-100);
  color: var(--green-800);
  font-size: 11px;
}

.property-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid var(--sand-100);
}

.no-price {
  color: var(--muted);
  font-size: 12px;
}

.details-link {
  color: var(--green-800);
  font-size: 12px;
  font-weight: 700;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 27, 22, 0.64);
  backdrop-filter: blur(5px);
}

.modal__sheet {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 26px 26px 0 0;
  background: var(--white);
}

.modal__close {
  position: sticky;
  z-index: 5;
  top: 12px;
  float: right;
  width: 40px;
  height: 40px;
  margin: 12px 12px -52px 0;
  border: 0;
  border-radius: 50%;
  background: rgba(6, 27, 22, 0.8);
  color: var(--white);
  cursor: pointer;
  font-size: 27px;
}

.details-cover {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: var(--sand-100);
}

.details-body {
  padding: 22px;
}

.details-body h2 {
  margin: 6px 0 10px;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.12;
}

.details-description {
  color: #4d5b56;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-line;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.amenity {
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--sand-100);
  font-size: 12px;
}

.quote-button {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 15px;
  background: var(--green-900);
  color: var(--white);
  font-weight: 700;
}

@media (min-width: 760px) {
  .search-panel form {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    align-items: end;
    gap: 12px;
  }

  .field-grid,
  .field-grid + .field-grid,
  .field-grid + .field,
  .field + .search-button {
    margin-top: 0;
  }

  .search-button {
    width: 190px;
  }

  .search-hint {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .hero__top {
    margin-bottom: 40px;
  }

  .brand__caption {
    display: none;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  main {
    width: min(100% - 20px, 1080px);
  }

  .search-panel {
    padding: 16px;
    border-radius: 20px;
  }

  .field-grid {
    gap: 8px;
  }

  .results {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* LAKEEVA_MAP_STYLES */

.map-section {
  padding-top: 28px;
}

.map-header {
  margin-bottom: 14px;
}

.map-header h2 {
  margin: 5px 0 0;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.map-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(9, 38, 30, 0.08);
  border-radius: 22px;
  background: var(--sand-100);
  box-shadow: 0 10px 28px rgba(9, 38, 30, 0.07);
}

#map {
  z-index: 1;
  width: 100%;
  height: 420px;
}

.map-empty {
  position: absolute;
  z-index: 500;
  top: 18px;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 36px);
  padding: 10px 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(6, 27, 22, 0.84);
  color: var(--white);
  font-size: 12px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.map-empty[hidden] {
  display: none;
}

.lakeeva-marker-container {
  border: 0;
  background: transparent;
}

.lakeeva-marker {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  transform: rotate(-45deg);
  border: 2px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--green-900);
  box-shadow: 0 6px 16px rgba(6, 27, 22, 0.32);
}

.lakeeva-marker span {
  transform: rotate(45deg);
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 17px;
}

.map-popup {
  min-width: 190px;
}

.map-popup strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.25;
}

.map-popup span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
}

.map-popup button {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 10px;
  background: var(--green-900);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.price-button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 11px;
  background: var(--green-900);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.price-button:active,
.quote-button:active,
.search-button:active {
  transform: translateY(1px);
}

.leaflet-control-attribution {
  font-size: 8px;
}

@media (max-width: 640px) {
  #map {
    height: 340px;
  }

  .map-section {
    padding-top: 22px;
  }

  .map-header h2 {
    font-size: 26px;
  }

  .property-card__footer {
    gap: 10px;
  }

  .price-button {
    flex: 1;
  }
}

/* LAKEEVA_REALTY_LOGO */

.brand {
  display: block;
  width: min(290px, 68vw);
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .brand {
    width: min(230px, 64vw);
  }
}

/* GOOGLE_SATELLITE_AND_GALLERY_V1 */

.property-gallery,
.details-gallery {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      var(--sand-100),
      var(--sand-200)
    );
}

.property-gallery {
  aspect-ratio: 4 / 3;
}

.details-gallery {
  aspect-ratio: 16 / 11;
  max-height: 580px;
}

.gallery-slider {
  touch-action: pan-y;
}

.gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition:
    transform 280ms cubic-bezier(
      0.22,
      0.61,
      0.36,
      1
    );
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
}

.gallery-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(6, 27, 22, 0.68);
  color: white;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.gallery-arrow--previous {
  left: 10px;
}

.gallery-arrow--next {
  right: 10px;
}

.gallery-counter {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(6, 27, 22, 0.76);
  color: white;
  font-size: 11px;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.property-card__location {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 8px;
  overflow: hidden;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.property-card__image,
.property-card__area {
  display: none;
}

#map {
  width: 100%;
  height: 440px;
  background: #d7d5cd;
}

.map-popup {
  min-width: 210px;
  max-width: 270px;
  padding: 3px;
}

.map-popup strong {
  display: block;
  margin-bottom: 6px;
  color: #13221d;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.map-popup span {
  display: block;
  margin-bottom: 12px;
  color: #6b7772;
  font-size: 11px;
}

.map-popup button {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  background: #09261e;
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.gm-style .gm-style-iw-c {
  border-radius: 15px;
}

.gm-style .gm-style-iw-d {
  overflow: auto !important;
}

@media (hover: hover) {
  .gallery-arrow {
    opacity: 0;
    transition:
      opacity 180ms ease,
      background 180ms ease;
  }

  .gallery-slider:hover .gallery-arrow {
    opacity: 1;
  }

  .gallery-arrow:hover {
    background: rgba(6, 27, 22, 0.9);
  }
}

@media (max-width: 640px) {
  #map {
    height: 360px;
  }

  .gallery-arrow {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .property-gallery {
    aspect-ratio: 16 / 11;
  }

  .details-gallery {
    aspect-ratio: 4 / 3;
  }
}

/* SMALLER_LAKEEVA_LOGO */

.brand {
  width: min(220px, 58vw);
}

@media (max-width: 640px) {
  .brand {
    width: min(180px, 52vw);
  }
}

/* LIVE_QUOTE_UI_V1 */

.price-button.is-loading,
.quote-button.is-loading {
  cursor: wait;
  opacity: 0.72;
}

.price-button.is-quoted,
.quote-button.is-quoted {
  background: #09261e;
  color: #ffffff;
}

.price-button.is-unavailable,
.quote-button.is-unavailable {
  background: #ece8df;
  color: #6b6257;
}

.quote-result {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 16px;
  border-radius: 16px;
}

.quote-result--success {
  background: #eef4f1;
  border: 1px solid rgba(9, 38, 30, 0.16);
}

.quote-result--unavailable {
  background: #f5f1eb;
  border: 1px solid rgba(107, 98, 87, 0.18);
}

.quote-result__label,
.quote-result__period,
.quote-result span {
  font-size: 14px;
  line-height: 1.4;
}

.quote-result__price {
  font-size: clamp(25px, 7vw, 38px);
  line-height: 1.1;
  color: #09261e;
}

/* CUSTOMER_PROFILE_AND_QUOTE_LOCK_V1 */

[hidden] {
  display: none !important;
}

body.customer-screen-locked {
  overflow: hidden !important;
  touch-action: none;
}

.customer-gate,
.quote-lock-screen,
.customer-profile-panel {
  position: fixed;
  inset: 0;
  display: grid;
  background: rgba(4, 20, 16, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.customer-gate {
  z-index: 12000;
  place-items: center;
  padding: 22px;
}

.quote-lock-screen {
  z-index: 13000;
  place-items: center;
  padding: 22px;
}

.customer-profile-panel {
  z-index: 11000;
}

.customer-gate__card,
.quote-lock-screen__card {
  width: min(100%, 440px);
  padding: 30px 24px;
  border-radius: 28px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.customer-gate__card h2,
.quote-lock-screen__card h2 {
  margin: 12px 0 10px;
  color: #09261e;
}

.customer-gate__card p,
.quote-lock-screen__card p {
  margin: 0 0 22px;
  color: #665f55;
  line-height: 1.55;
}

.customer-gate__icon,
.quote-result-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background: #eef4f1;
  color: #09261e;
  font-size: 28px;
  font-weight: 800;
}

.quote-result-icon.is-success {
  background: #e1f3e9;
  color: #17683e;
}

.quote-result-icon.is-unavailable {
  background: #f4e9e4;
  color: #99503b;
}

.customer-spinner,
.quote-lock-spinner {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  border: 5px solid #e5ece8;
  border-top-color: #09261e;
  border-radius: 50%;
  animation: lakeeva-spin 0.85s linear infinite;
}

@keyframes lakeeva-spin {
  to {
    transform: rotate(360deg);
  }
}

.customer-primary-button,
.customer-secondary-button {
  width: 100%;
  min-height: 52px;
  padding: 13px 18px;
  border-radius: 15px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.customer-primary-button {
  border: 0;
  background: #09261e;
  color: #ffffff;
}

.customer-secondary-button {
  margin-top: 10px;
  border: 1px solid rgba(9, 38, 30, 0.18);
  background: #ffffff;
  color: #09261e;
}

.customer-gate__status {
  min-height: 22px;
  margin-top: 14px;
  color: #776e62;
  font-size: 14px;
}

.customer-profile-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 5px 12px 5px 5px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font: inherit;
  cursor: pointer;
}

.customer-profile-button__avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  color: #09261e;
  font-weight: 800;
}

.customer-profile-button__text {
  font-size: 14px;
  font-weight: 700;
}

.customer-profile-panel__backdrop {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 100%;
}

.customer-profile-sheet {
  width: min(100%, 620px);
  max-height: 92vh;
  overflow-y: auto;
  padding: 24px 20px 32px;
  border-radius: 28px 28px 0 0;
  background: #f8f6f1;
}

.customer-profile-sheet__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.customer-profile-sheet__header h2 {
  margin: 4px 0 0;
  color: #09261e;
}

.customer-profile-sheet__eyebrow,
.quote-lock-screen__eyebrow {
  color: #81786c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customer-icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #09261e;
  font-size: 27px;
  cursor: pointer;
}

.customer-profile-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 17px;
  border-radius: 20px;
  background: #ffffff;
}

.customer-profile-card__avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #09261e;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
}

.customer-profile-card strong,
.customer-profile-card span {
  display: block;
}

.customer-profile-card span {
  margin-top: 3px;
  color: #796f63;
}

.customer-profile-data {
  display: grid;
  gap: 10px;
  margin: 14px 0 24px;
}

.customer-profile-data > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 16px;
  border-radius: 15px;
  background: #ffffff;
}

.customer-profile-data dt {
  color: #7b7267;
}

.customer-profile-data dd {
  margin: 0;
  color: #09261e;
  font-weight: 700;
  text-align: right;
}

.customer-profile-history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 12px;
}

.customer-profile-history-header h3 {
  margin: 0;
  color: #09261e;
}

.customer-profile-history-header button {
  border: 0;
  background: transparent;
  color: #496d62;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.customer-profile-history {
  display: grid;
  gap: 11px;
}

.customer-history-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 13px;
  padding: 11px;
  border-radius: 17px;
  background: #ffffff;
}

.customer-history-item__image,
.customer-history-item__placeholder {
  width: 78px;
  height: 78px;
  border-radius: 13px;
}

.customer-history-item__image {
  object-fit: cover;
}

.customer-history-item__placeholder {
  display: grid;
  place-items: center;
  background: #e7ece8;
  color: #09261e;
}

.customer-history-item__content {
  min-width: 0;
}

.customer-history-item__content strong,
.customer-history-item__content span {
  display: block;
}

.customer-history-item__content strong {
  overflow: hidden;
  color: #09261e;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-history-item__content > span {
  margin-top: 5px;
  color: #756c61;
  font-size: 13px;
}

.customer-history-item__status {
  font-weight: 800;
}

.customer-history-item__status.is-available {
  color: #17683e;
}

.customer-history-item__status.is-unavailable,
.customer-history-item__status.is-error {
  color: #99503b;
}

.customer-history-item__status.is-processing {
  color: #956d19;
}

.customer-profile-empty {
  padding: 24px;
  border-radius: 17px;
  background: #ffffff;
  color: #746c62;
  text-align: center;
}

.quote-lock-timer {
  margin: 18px 0;
  color: #09261e;
  font-size: clamp(48px, 15vw, 72px);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.quote-lock-details {
  display: flex;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}

.quote-lock-details span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #f0eee8;
  color: #665e54;
  font-size: 13px;
  font-weight: 700;
}

.quote-lock-price {
  margin: 18px 0 10px;
  color: #09261e;
  font-size: clamp(38px, 12vw, 58px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

@media (max-width: 640px) {
  .customer-profile-button__text {
    display: none;
  }

  .customer-profile-button {
    padding-right: 5px;
  }

  .customer-gate,
  .quote-lock-screen {
    padding: 14px;
  }

  .customer-gate__card,
  .quote-lock-screen__card {
    padding: 26px 19px;
  }
}
