.restaurant-card{display:flex;flex-direction:column;border-radius:var(--radius-md);overflow:hidden;background-color:var(--surface);transition:transform .2s ease,box-shadow .2s ease}.restaurant-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}.restaurant-card-image{position:relative;width:100%;aspect-ratio:3/2;background-color:var(--surface-elevated);overflow:hidden}.restaurant-card-placeholder{width:100%;height:100%;background-color:var(--surface-elevated)}.restaurant-card-body{padding:16px;display:flex;flex-direction:column;gap:6px}.restaurant-card-top{display:flex;align-items:baseline;justify-content:space-between;gap:8px}.restaurant-card-name{font-size:var(--font-body);font-weight:600;letter-spacing:-.01em;line-height:1.3}.restaurant-card-price{font-size:var(--font-small);color:var(--text-muted);white-space:nowrap}.restaurant-card-tags{display:flex;gap:6px;flex-wrap:wrap}.restaurant-card-tag{font-size:var(--font-xs);color:var(--text-muted);background-color:var(--surface-elevated);padding:2px 8px;border-radius:4px}.restaurant-card-location{font-size:var(--font-small);color:var(--text-muted);text-transform:capitalize}