/* ===================================
   서브페이지 공통 스타일 (sub.css)
=================================== */

/* ───────────────────────────────────
   about.html
─────────────────────────────────── */
.about-hero {
  background: linear-gradient(160deg, var(--accent-light) 0%, #d4e8da 100%);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 20px;
}
.about-hero-icon {
  margin-bottom: 12px;
  display: block;
}
.about-hero-icon img{
  width: 2rem
}
.about-hero h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}
.about-hero p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
  font-style: italic;
}
.value-list {
  list-style: none;
  padding: 0;
}
.value-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.value-list li:last-child { border-bottom: none; }
.value-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-icon i { color: var(--accent); font-size: 16px; }
.value-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.value-text p { font-size: 13.5px; color: var(--gray-700); line-height: 1.5; }
.sns-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.sns-btn {
  flex: 1;
  padding: 12px 5px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  color: var(--black);
  font-size: 13px;
  font-family: 'Noto Sans KR', sans-serif;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: var(--white);
}
.sns-btn i { font-size: 20px; }
.sns-btn:hover { background: var(--accent-light); border-color: var(--accent-mid); }
.sns-btn.instagram i { color: #e1306c; }
.sns-btn.kakao i { color: #f9e000; }
.sns-btn.naver i { color: #03c75a; }

/* ───────────────────────────────────
   menu.html
─────────────────────────────────── */
.menu-tab-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.menu-tab-bar::-webkit-scrollbar { display: none; }
.menu-tab {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-size: 13px;
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 500;
}
.menu-tab.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.menu-section { display: none; }
.menu-section.active { display: block; }

.badge-best {
  display: inline-flex; align-items: center; gap: 2px;
  background: #ff6b00; color: #fff;
  font-size: 10px; padding: 2px 7px;
  border-radius: 8px; margin-left: 5px;
  vertical-align: middle; font-weight: 700;
}
.badge-season {
  display: inline-flex; align-items: center; gap: 2px;
  background: #7c3aed; color: #fff;
  font-size: 10px; padding: 2px 7px;
  border-radius: 8px; margin-left: 5px;
  vertical-align: middle; font-weight: 700;
}
.badge-decaf {
  display: inline-flex; align-items: center;
  background: #e8f5e8; color: #2d6a3f;
  font-size: 10px; padding: 2px 7px;
  border-radius: 8px; margin-left: 5px;
  vertical-align: middle; font-weight: 600;
  border: 1px solid #a8d8b0;
}
.badge-spicy {
  display: inline-flex; align-items: center;
  background: #fff0f0; color: #c53030;
  font-size: 10px; padding: 2px 7px;
  border-radius: 8px; margin-left: 5px;
  vertical-align: middle; font-weight: 600;
  border: 1px solid #fca5a5;
}
.badge-nonalc {
  display: inline-flex; align-items: center;
  background: #e8f4fb; color: #1a6a9a;
  font-size: 10px; padding: 2px 7px;
  border-radius: 8px; margin-left: 5px;
  vertical-align: middle; font-weight: 600;
}
.menu-notice {
  background: var(--accent-light);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-size: 12.5px;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.5;
}
.menu-notice i { flex-shrink: 0; margin-top: 2px; }
.menu-notice--rows { flex-direction: column; gap: 4px; }
.menu-notice--rows span { display: flex; align-items: center; gap: 6px; }
.menu-notice--rows span i { margin-top: 0; }
.time-banner {
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
}
.time-banner.day     { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.time-banner.night   { background: #1a1a2e; border: 1px solid #3a3a5e; color: #c8c8f0; }
.time-banner.cocktail { background: #f5f0ff; border: 1px solid #d8b4fe; color: #5b21b6; }
.time-banner i { font-size: 16px; flex-shrink: 0; }
.cocktail-price { font-size: 13px; opacity: 0.85; }
.menu-category-header {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700;
  color: var(--black);
  padding: 10px 0 8px;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 4px; margin-top: 16px;
}
.menu-category-header:first-child { margin-top: 0; }
.menu-category-header i { color: var(--accent); font-size: 13px; }
.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 11px 4px;
  border-bottom: 1px solid var(--gray-100);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-left { flex: 1; padding-right: 12px; }
.menu-item-name { font-size: 14px; font-weight: 600; color: var(--black); line-height: 1.4; }
.menu-item-eng  { font-size: 11px; color: var(--gray-500); margin-top: 1px; }
.menu-item-desc { font-size: 12px; color: var(--gray-700); margin-top: 4px; line-height: 1.5; }
.menu-item-temp { font-size: 11px; color: var(--gray-500); margin-top: 3px; }
.tag-hot { display:inline-block; background:#fff3f0; color:#c53030; border:1px solid #fca5a5; border-radius:5px; font-size:10px; font-weight:700; padding:1px 6px; margin-right:4px; }
.tag-ice { display:inline-block; background:#f0f7ff; color:#1a6aaa; border:1px solid #93c5fd; border-radius:5px; font-size:10px; font-weight:700; padding:1px 6px; margin-right:4px; }
.menu-item-price {
  font-size: 14px; font-weight: 700; color: var(--black);
  white-space: nowrap; padding-top: 2px;
  flex-shrink: 0;
}
.price-dual {
  display: flex; flex-direction: row; align-items: flex-end; gap: 4px;
}
.price-dual .p-col { display: flex; flex-direction: column; align-items: center; }
.price-dual .p-label { font-size: 10px; color: var(--gray-500); margin-bottom: 2px; }
.price-dual .p-price { font-size: 14px; font-weight: 700; color: var(--black); white-space: nowrap; }
.price-dual .p-sep { font-size: 14px; font-weight: 700; color: var(--gray-500); padding-bottom: 1px; }
.allergy-note {
  font-size: 11px; color: #e07a00;
  background: #fff8ee; border-radius: 6px;
  padding: 3px 8px; margin-top: 4px;
  display: inline-block;
}
.menu-item.has-image {
  cursor: pointer;
}
.menu-item.has-image:active {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
}

/* Menu Image Modal */
.menu-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.menu-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.menu-modal-box {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  width: 80%;
  max-width: 320px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.menu-modal-box img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 260px;
  transition: opacity 0.2s;
}
.menu-modal-name {
  padding: 13px 16px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  text-align: center;
  background: #fff;
}
.menu-modal-close {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  z-index: 1;
}

.menu-modal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 12px;
  border-top: 1px solid var(--gray-100);
}
.menu-modal-nav button {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-700);
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-modal-nav button:active { background: var(--gray-200); }
#menuModalCounter { font-size: 12px; color: var(--gray-500); }

/* ───────────────────────────────────
   gallery.html
─────────────────────────────────── */
.gallery-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  background: var(--gray-100);
  border-radius: var(--radius-pill);
  padding: 3px;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  flex: 1;
  min-width: 60px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  font-size: 12px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  text-align: center;
}
.tab-btn.active {
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 1px 6px rgba(0,0,0,0.10);
}
.gallery-panel { display: none; }
.gallery-panel.show { display: block; }
.g-section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
}
.g-section-head i { color: var(--accent); font-size: 14px; }
.g-section-head h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}
.g-section-head span {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 400;
}
.g-divider {
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.space-hero {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 4px;
  cursor: pointer;
  position: relative;
}
.space-hero img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.space-hero:hover img { transform: scale(1.02); }
.space-hero-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: white;
  padding: 28px 14px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}
.sg-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.sg-item.span2 { grid-column: span 2; aspect-ratio: 2/1; }
.sg-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.sg-item:hover img { transform: scale(1.05); }
.sg-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.60));
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 14px 6px 5px;
  text-align: center;
}
.menu-board-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu-board-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.menu-board-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}
.menu-board-item:hover img { transform: scale(1.01); }
.menu-board-label {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.04em;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.lightbox.show { opacity: 1; pointer-events: all; }
.lb-close {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(255,255,255,0.15);
  border: none; color: white;
  width: 40px; height: 40px;
  border-radius: 50%; font-size: 17px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lb-img-wrap {
  width: 92vw;
  max-width: 480px;
  max-height: 72vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}
.lb-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  display: block;
}
.lb-caption {
  color: rgba(255,255,255,0.80);
  font-size: 13px;
  margin-top: 12px;
  font-weight: 500;
}
.lb-nav {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}
.lb-nav button {
  background: rgba(255,255,255,0.15);
  border: none; color: white;
  width: 44px; height: 44px;
  border-radius: 50%; font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lb-counter {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  margin-top: 8px;
}
.gallery-cta {
  margin-top: 24px;
  text-align: center;
  padding: 20px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.gallery-cta p { font-size: 13px; color: var(--gray-700); margin-bottom: 12px; }
.cta-row {
  display: flex; gap: 10px;
  justify-content: center; flex-wrap: wrap;
}
.cta-row a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
  text-decoration: none; color: white;
}
.cta-insta { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.cta-blog  { background: #03c75a; }

/* ───────────────────────────────────
   hours.html
─────────────────────────────────── */
.hours-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
}
.hours-status.open   { background: #e8f7ee; color: #1a7a3e; border: 1.5px solid #a8e0be; }
.hours-status.closed { background: #fef2f2; color: #c53030; border: 1.5px solid #fca5a5; }
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.open   { background: #22c55e; animation: pulse 2s infinite; }
.status-dot.closed { background: #ef4444; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.today-row td { color: var(--accent) !important; font-weight: 700 !important; }
.today-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 6px;
  font-weight: 600;
}
.holiday-notice {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 13px;
  color: #92400e;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

/* ───────────────────────────────────
   directions.html
─────────────────────────────────── */
.map-image-link {
  display: block;
  border-radius: var(--radius-lg);
  overflow: visible;
  margin-bottom: 16px;
}
.map-image-link img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.3s;
}
.map-image-link:hover img { transform: scale(1.02); }

/* 카카오 약도 컨테이너 */
.root_daum_roughmap {
  width: 100% !important;
  min-height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.root_daum_roughmap iframe {
  width: 100% !important;
  display: block;
}

.addr-name { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.addr-sub  { font-size: 13px; color: var(--gray-500); margin-bottom: 10px; }
.parking-box {
  background: var(--accent-light);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}
.parking-title { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 6px; }
.parking-list  { font-size: 13px; color: var(--gray-700); line-height: 1.7; }

.toilet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.toilet-cell {
  border-radius: 10px;
  padding: 12px 14px;
}
.toilet-cell--both  { background: #eef2ff; border: 1px solid #c0cff8; }
.toilet-cell--women { background: #fff0f0; border: 1px solid #ffaac0; }
.toilet-cell--men   { background: #eef4ff; border: 1px solid #b0cff8; }
.toilet-cell-floor {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 6px;
}
.toilet-cell--both .toilet-cell-floor  { color: #6676aa; }
.toilet-cell--women .toilet-cell-floor { color: #cc0044; }
.toilet-cell--men .toilet-cell-floor   { color: #6687aa; }
.toilet-cell-gender {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}
.toilet-cell-gender .men   { color: #2060cc; }
.toilet-cell-gender .women { color: #e8005a; }
.toilet-cell-note { font-size: 11px; color: #888; margin-top: 4px; }
.toilet-note {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
}
.transport-badge.train   { background: #ef7c1c; color: white; }
.transport-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.transport-item:last-child { border-bottom: none; }
.transport-badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.transport-badge.subway { background: #003499; color: white; }
.transport-badge.bus    { background: #3ab44a; color: white; }
.transport-badge.car    { background: #555;    color: white; }
.transport-badge.walk   { background: #1a56c4; color: white; }
.transport-info h4 { font-size: 14.5px; font-weight: 600; margin-bottom: 4px; }
.transport-info p  { font-size: 13px; color: var(--gray-700); line-height: 1.6; }
.map-open-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  margin-bottom: 10px;
}
.map-open-btn:hover { background: var(--accent); }
.map-open-btn.secondary {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--gray-200);
}
.map-open-btn.secondary:hover {
  background: var(--accent-light);
  border-color: var(--accent-mid);
  color: var(--accent);
}

/* ───────────────────────────────────
   space.html
─────────────────────────────────── */
.floor-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.floor-card:active { transform: scale(0.99); }
.floor-header {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}
.floor-header:hover { filter: brightness(0.97); }
.f1 { background: linear-gradient(135deg, #e8f5ee, #c2e8d0); }
.f2 { background: linear-gradient(135deg, #fff8e8, #ffe5a0); }
.f3 { background: linear-gradient(135deg, #e8f0fc, #c0d4f8); }
.f4 { background: linear-gradient(135deg, #fce8f0, #f8c0d8); }
.f5 { background: linear-gradient(135deg, #f0ece4, #ddd0b8); }
.f6 { background: linear-gradient(135deg, #f1f1f1, #cccccc); }
.floor-num-badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  gap: 1px;
}
.floor-num-badge .num { font-size: 20px; line-height: 1; font-weight: 800; color: var(--black); }
.floor-title-wrap { flex: 1; }
.floor-title-wrap h3 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.floor-title-wrap p { font-size: 12px; color: var(--gray-700); }
.floor-chevron {
  color: var(--gray-500);
  font-size: 13px;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.floor-card.open .floor-chevron { transform: rotate(90deg); }
.floor-body {
  display: none;
  padding: 16px 18px 18px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.floor-card.open .floor-body { display: block; }
.floor-feature-list { list-style: none; padding: 0; margin-bottom: 12px; }
.floor-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
}
.floor-feature-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.badge-nokids {
  display: inline-flex; align-items: center; gap: 4px;
  background: #fff0f0; color: #c53030;
  border: 1px solid #fca5a5; border-radius: 20px;
  font-size: 11px; font-weight: 600; padding: 3px 10px; margin-top: 8px;
}
.badge-open {
  display: inline-flex; align-items: center; gap: 4px;
  background: #f0fff4; color: #276749;
  border: 1px solid #9ae6b4; border-radius: 20px;
  font-size: 11px; font-weight: 600; padding: 3px 10px; margin-top: 8px;
}
.space-summary {
  background: linear-gradient(135deg, #1a3a2a, #2e5a40);
  border-radius: var(--radius-lg);
  padding: 20px;
  color: white;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.space-summary-icon { font-size: 40px; flex-shrink: 0; }
.space-summary h2 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.space-summary p  { font-size: 13px; opacity: 0.85; line-height: 1.5; }
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.amenity-item {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 14px 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-align: center;
}
.amenity-item i    { font-size: 20px; color: var(--accent); }
.amenity-item span { font-size: 12px; color: var(--gray-700); font-weight: 500; }
.space-rule {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13.5px; color: var(--gray-700); line-height: 1.5;
}
.space-rule:last-child { border-bottom: none; }
.space-rule i { color: var(--accent); margin-top: 2px; flex-shrink: 0; width: 16px; }
.restroom-badge {
  display: flex; align-items: center; gap: 6px;
  background: #f0f4ff; border: 1px solid #c0cff8;
  border-radius: 10px; padding: 8px 12px;
  font-size: 13px; font-weight: 500; color: #3a4a7a; margin-top: 10px;
}
.restroom-badge i { color: #5a72cc; flex-shrink: 0; }
.wc-m { color: #2060cc; font-weight: 700; }
.wc-w { color: #e8005a; font-weight: 700; }
.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--gray-500);
  text-transform: uppercase;
  margin: 24px 0 10px;
}
