/* 공통 설정 */
.container.shop-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Noto Sans KR', sans-serif;
  line-height: 1.7;
  color: #333;
}

.container.shop-content h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #222;
  border-left: 6px solid #009688;
  padding-left: 15px;
}

.container.shop-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #444;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
}

.container.shop-content p {
  margin-bottom: 16px;
}

.container.shop-content strong {
  font-weight: 600;
  color: #000;
}

/* 섹션 공통 간격 */
.container.shop-content section {
  margin-bottom: 50px;
}

/* 리스트 스타일 */
.container.shop-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.container.shop-content ul li {
  margin-bottom: 10px;
}

/* 이미지 갤러리 */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.image-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.2s;
}

.image-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 이용 후기 */
.shop-review blockquote {
  background: #f7f9fa;
  border-left: 5px solid #009688;
  padding: 15px 20px;
  margin-bottom: 20px;
  font-style: italic;
  color: #555;
  border-radius: 6px;
}

/* 관련 링크 */
.shop-related ul {
  padding-left: 20px;
}

.shop-related li {
  margin-bottom: 8px;
}

.shop-related a {
  color: #009688;
  text-decoration: none;
  font-weight: 500;
}

.shop-related a:hover {
  text-decoration: underline;
}
