.commerce-card h3 {
  margin-bottom: 14px;
  font-size: 1.16rem;
  line-height: 1.28;
}

.commerce-restaurants,
.commerce-card {
  min-height: 0;
}

.commerce-restaurants {
  margin-top: 18px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(200,164,93,0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.commerce-restaurants h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
  line-height: 1.28;
  color: var(--gold);
}

.commerce-restaurants h3 i {
  margin-right: 8px;
  color: var(--gold);
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.restaurant-card {
  min-width: 0;
  font-size: 0.9rem;
}

.restaurant-photo {
  display: flex;
  width: 100%;
  aspect-ratio: 4 / 3;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 6px;
  color: var(--gold);
  text-decoration: none;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(200,164,93,0.18);
  border-radius: 8px;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.restaurant-photo:hover {
  transform: scale(1.04);
  background: rgba(255,255,255,0.075);
  border-color: rgba(200,164,93,0.38);
}

.restaurant-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-photo i {
  font-size: 1.35rem;
}

.restaurant-content {
  display: grid;
  gap: 1px;
  line-height: 1.42;
}

.restaurant-content strong {
  color: #fff4d6;
  font-weight: 500;
  font-size: 1.02rem;
}

.restaurant-content span {
  color: var(--text-soft);
  font-size: 1.02rem;
}

.restaurant-content a {
  width: fit-content;
  color: #fff4d6;
  font-size: 1.02rem;
  text-decoration: none;
}

.restaurant-content a:hover {
  text-decoration: underline;
}

.commerce-list li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding: 4px 0;
  font-size: 1.02rem;
  line-height: 1.42;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.commerce-list span {
  font-size: 1.02rem;
}

#markets_list li {
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
}

#markets_list strong {
  font-size: 1.02rem;
  white-space: nowrap;
}

#shops_list strong {
  font-size: 1.02rem;
}

#shops_list a,
#markets_list a {
  color: var(--gold);
  font-size: 1.02rem;
  text-decoration: none;
}

#shops_list a:hover,
#markets_list a:hover,
.restaurant-content a:hover {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .restaurant-grid {
    grid-template-columns: 1fr 1fr;
  }

  .commerce-list li {
    grid-template-columns: 1fr;
  }

  .commerce-list li {
    gap: 2px;
  }
}

@media (max-width: 520px) {
  .restaurant-grid {
    grid-template-columns: 1fr;
  }
}
