#rv-restaurant-search {
  max-width: 720px;
  margin: 24px auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.rv-rs-searchwrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.rv-rs-searchbox {
  width: 100%;
  max-width: 600px;
  padding: 16px 22px;
  font-size: 18px;
  border: 1px solid #dfe1e5;
  border-radius: 24px;
  box-shadow: 0 1px 6px rgba(32,33,36,0.18);
  outline: none;
  transition: box-shadow 0.15s ease;
}

.rv-rs-searchbox:focus {
  box-shadow: 0 2px 10px rgba(32,33,36,0.3);
}

.rv-rs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.rv-rs-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #dadce0;
  background: #f8f9fa;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease;
}

.rv-rs-pill:hover {
  background: #eee;
}

.rv-rs-pill-active {
  background: #c9302c;
  border-color: #c9302c;
  color: #fff;
}

.rv-rs-loading,
.rv-rs-empty {
  text-align: center;
  color: #666;
  padding: 24px 0;
  font-size: 14px;
}

.rv-rs-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.rv-rs-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.12s ease;
}

.rv-rs-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.rv-rs-card-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rv-rs-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rv-rs-card-thumb-fallback {
  font-size: 32px;
}

.rv-rs-card-title {
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
}
