.shop-visual {
  height: 35vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f6b93b 0%, #e58e26 100%);
  margin-bottom: 3rem;
}
.shop-visual .sub-hero__title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.3;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 0 1rem;
  max-width: 90%;
}
.shop-visual .visual-lead {
  margin-top: 0.8rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

.search-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.search-input {
  padding: 0.8rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  min-width: 250px;
  transition: border-color 0.2s;
}
.search-input:focus {
  outline: none;
  border-color: var(--primary);
}
.filter-select {
  padding: 0.8rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
}
.filter-select:focus {
  outline: none;
  border-color: var(--primary);
}

.shop-list {
  display: grid;
  gap: 2rem;
}
@media (min-width: 720px) {
  .shop-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1040px) {
  .shop-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.shop-item {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.shop-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.shop-content {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.shop-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--primary-dark);
}
.shop-location {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.shop-description {
  font-size: 0.9rem;
  color: var(--brown);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.action-button-small {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s;
  align-self: flex-start;
}
.action-button-small:hover {
  background: var(--primary-dark);
}

.page-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.6rem;
  text-align: center;
  position: relative;
  display: inline-block;
}
.page-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: var(--primary);
  transform: translateX(-50%);
}

@media (max-width: 640px) {
  .search-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-select {
    flex: 1;
  }
}

.action-section {
  margin: 4rem 0 0;
  padding: 3rem 1.2rem;
  text-align: center;
  background: #f6b93b;
  color: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.action-section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.action-section p {
  margin-bottom: 1.2rem;
}
.action-button {
  display: inline-block;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}
.action-button:hover {
  transform: translateY(-2px);
}
