/* ==============================
   💅 SHOP COMMON STYLE
   공통 레이아웃 / 카드 / 버튼 / 빈 리스트 문구
   ============================== */

.jeju-container {
  padding: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.page-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.shop-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ✅ 카드 디자인 */
.shop-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 14px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}
.shop-card:hover {
  border-color: #ddd;
  box-shadow: 0 3px 6px rgba(0,0,0,0.06);
}

/* ✅ 이미지 썸네일 */
.shop-card .thumb img {
  width: 100px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

/* ✅ 제목 */
.shop-card .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shop-card .title {
  display: block;
  color: #222;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.shop-card .title:hover {
  color: #6c5ce7;
}

/* ✅ 버튼 */
.shop-card .actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ❤️ 공통 아이콘 버튼 */
.icon-quick {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all .2s ease;
  font-size: 15px;
}
.icon-quick:hover {
  background: #f1f1ff;
  color: #6c5ce7;
}

/* ❤️ 찜된 상태 */
.icon-quick.wish.on {
  background: #ffe9ef;
  border-color: #ff88a1;
  color: #ff3b63;
}
.icon-quick.wish.on i {
  color: #ff3b63;
}

/* 🗑 삭제 버튼 */
.btn-del {
  background: #ffefef;
  border: 1px solid #ffd5d5;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  color: #d63031;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-del:hover {
  background: #ffd9d9;
  color: #b71515;
}

/* ✅ 빈 목록 */
.empty-text {
  color: #777;
  text-align: center;
  padding: 50px 0;
  font-size: 15px;
}
