* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #dfe5ee;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 18px 0;
}

.phone-page {
  width: 390px;
  min-width: 390px;
  max-width: 390px;
  min-height: 844px;
  background: #f7f8fb;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  padding-bottom: 24px;
}

.topbar {
  padding: 22px 18px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eyebrow {
  font-size: 13px;
  color: #0b72d9;
  font-weight: 700;
  margin-bottom: 4px;
}

.topbar h1 {
  font-size: 26px;
  color: #101828;
  line-height: 1.15;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #ffffff;
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.search-box {
  padding: 0 18px 14px;
}

.search-box input {
  width: 100%;
  border: none;
  outline: none;
  background: #ffffff;
  border-radius: 16px;
  padding: 15px 16px;
  font-size: 14px;
  color: #101828;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.promo-card {
  margin: 0 18px 16px;
  padding: 18px;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #0b72d9, #12b76a);
}

.promo-card p {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 5px;
}

.promo-card h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.promo-card span {
  font-size: 13px;
  opacity: 0.95;
}

.category-row {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 0 18px 16px;
  scrollbar-width: none;
}

.category-row::-webkit-scrollbar {
  display: none;
}

.cat {
  border: none;
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #475467;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
  cursor: pointer;
}

.cat.active {
  background: #101828;
  color: #ffffff;
}

.property-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 18px;
}

.property-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.property-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #d8dee8;
}

.property-content {
  padding: 15px;
}

.property-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.property-head h3 {
  font-size: 18px;
  line-height: 1.25;
  color: #101828;
  flex: 1;
}

.tag {
  background: #eaf4ff;
  color: #0b72d9;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 9px;
  border-radius: 999px;
}

.location {
  font-size: 13px;
  color: #667085;
  margin-bottom: 10px;
}

.price {
  font-size: 21px;
  font-weight: 900;
  color: #0b72d9;
  margin-bottom: 12px;
}

.specs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.specs span {
  background: #f2f4f7;
  color: #344054;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 12px;
}

.wa-btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: #12b76a;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  padding: 14px;
  border-radius: 15px;
}

.bottom-note {
  margin: 18px;
  padding: 16px;
  background: #101828;
  color: #ffffff;
  border-radius: 20px;
  text-align: center;
}

.bottom-note strong {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

.bottom-note p {
  font-size: 13px;
  line-height: 1.5;
  color: #d0d5dd;
}

.hidden {
  display: none;
}

@media (max-width: 430px) {
  body {
    padding: 0;
    background: #f7f8fb;
    justify-content: flex-start;
  }

  .phone-page {
    width: 390px;
    min-width: 390px;
    max-width: 390px;
    box-shadow: none;
  }
}
