/* ============================================================================
   予約フォーム - ふくサロン 高級感のある色プラン
   ============================================================================ */

/* 予約フォームオーバーレイ */
.booking-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

/* フォームコンテナ */
.booking-form-container {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(184, 149, 108, 0.3);
}

/* タイトル */
.booking-form-title {
  color: var(--gold);
  font-size: 1.5em;
  margin-bottom: 5px;
  text-align: center;
  font-weight: bold;
}

/* 通知 */
.saved-info-notice {
  background: rgba(184, 149, 108, 0.1);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 20px;
}

/* 予約情報セクション */
.booking-info-section {
  background: var(--cream);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 25px;
  border-left: 4px solid var(--gold);
}

.booking-info-item {
  display: flex;
  margin-bottom: 8px;
}

.info-label {
  font-weight: 600;
  color: var(--gold);
  min-width: 80px;
}

/* フォーム */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-brown);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--beige);
  border-radius: 8px;
  font-size: 1em;
  color: var(--text);
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-textarea {
  min-height: 80px;
}

.form-hint {
  color: var(--brown);
  font-size: 0.85em;
  margin-top: 6px;
}

/* チェックボックス */
.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--text);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: var(--gold);
}

/* ボタン */
.form-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-cancel,
.btn-submit {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-cancel {
  background: var(--brown);
  color: var(--white);
}

.btn-cancel:hover {
  background: var(--dark-brown);
}

.btn-submit {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(184, 149, 108, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 149, 108, 0.4);
}

/* 登録者モード用の情報表示 */
.member-info-display {
  background: var(--cream);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}

.member-info-display .info-row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  border-bottom: 1px solid var(--beige);
}

.member-info-display .info-row:last-child {
  border-bottom: none;
}

.member-info-display .info-label {
  font-weight: 600;
  color: var(--brown);
}

.member-info-display .info-value {
  color: var(--text);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .booking-form-container {
    padding: 20px;
  }

  .booking-form-title {
    font-size: 1.3em;
  }

  .info-label {
    min-width: 60px;
    font-size: 0.9em;
  }

  .form-buttons {
    flex-direction: column;
  }
}
