.property-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(104px, 1.5fr);
  gap: 8px;
  margin-top: 14px;
}

.property-action {
  min-width: 0;
  min-height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 5px;
  border: 1px solid #b9d5d5;
  border-radius: 11px;
  background: #f9fcfb;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 760;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform .14s ease, border-color .14s ease, background-color .14s ease, box-shadow .14s ease;
}

.property-action:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: #65a8ac;
  background: #eef8f6;
  box-shadow: 0 5px 14px #073d4b16;
}

.property-action:focus-visible {
  outline: 3px solid #e6a385;
  outline-offset: 2px;
}

.property-action:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.property-action svg,
.property-action img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.property-action svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.property-action-valuation {
  border-color: #b9d5d5;
  background: #f9fcfb;
  min-width: 112px;
}

.details .property-action-valuation img {
  min-height: 0;
  object-fit: contain;
  background: transparent;
}

.property-action.saved {
  border-color: #4b999d;
  background: #e4f4f0;
  color: var(--sea);
}

.property-action.saved .action-icon-heart {
  fill: currentColor;
}

.share-sheet {
  min-width: min(360px, calc(100vw - 76px));
}

.share-sheet h2 {
  margin-bottom: 3px;
}

.share-sheet-summary {
  margin: 0 0 18px;
  color: var(--sea);
  font-weight: 760;
}

.share-options {
  display: grid;
  gap: 8px;
}

.share-option {
  width: 100%;
  min-height: 66px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid #b9d5d5;
  border-radius: 11px;
  background: #f9fcfb;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.share-option:hover,
.share-option:focus-visible {
  border-color: #65a8ac;
  background: #eef8f6;
}

.share-option:focus-visible {
  outline: 3px solid #e6a385;
  outline-offset: 2px;
}

.share-option svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--sea);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.share-option span {
  display: grid;
  gap: 1px;
}

.share-option strong {
  font-size: .94rem;
}

.share-option small {
  color: var(--muted);
  font-size: .76rem;
}

@media (max-width: 850px) {
  .property-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .property-action {
    min-height: 68px;
    font-size: .78rem;
  }

  .property-action-valuation {
    grid-column: 1 / -1;
  }
}
