/* Shared public header — logo left + 預約場地 right (matches index) */
.app-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light, #E8E2D9);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.app-header .header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.app-header .logo-slot {
  width: auto;
  max-width: 160px;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.app-header .logo-slot img {
  display: block;
  width: auto !important;
  max-width: 140px;
  max-height: 36px;
  height: auto;
  object-fit: contain;
}

.header-right-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.home-header-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--primary, #FF5B00);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 91, 0, 0.28);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.home-header-book-btn:hover {
  background: var(--primary-hover, #FF7A33);
  box-shadow: 0 4px 12px rgba(255, 91, 0, 0.35);
}

.home-header-book-btn:active {
  background: var(--primary-active, #D94D00);
  transform: scale(0.98);
}
