/* GenFrame Shotsi 790 - 간단한 스타일 */

/* 버튼 스타일 */
.genframe-shotsi790-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 28px;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.5px;
}

.genframe-shotsi790-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.genframe-shotsi790-btn:hover {
  background: #ffffff;
  color: #000000;
}

.genframe-shotsi790-btn:hover::before {
  opacity: 1;
}

.genframe-shotsi790-btn:hover .btn-icon,
.genframe-shotsi790-btn:hover .btn-text,
.genframe-shotsi790-btn:hover .btn-arrow {
  color: #000000;
}

.genframe-shotsi790-btn:hover .btn-icon .material-icons,
.genframe-shotsi790-btn:hover .btn-arrow .material-icons {
  color: #000000;
}

.genframe-shotsi790-btn:active {
  opacity: 0.9;
}

.genframe-shotsi790-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.genframe-shotsi790-btn:hover .btn-icon {
  background: rgba(0, 0, 0, 0.15);
  transform: rotate(360deg);
}

.genframe-shotsi790-btn .btn-icon .material-icons {
  font-size: 21px;
  color: #000000;
}

.genframe-shotsi790-btn .btn-text {
  font-size: 16px;
  font-weight: 700;
}

.genframe-shotsi790-btn .btn-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.genframe-shotsi790-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.genframe-shotsi790-btn .btn-arrow .material-icons {
  font-size: 22px;
  color: #000000;
}

/* 토글 버튼 컨테이너 - WPBakery에서 위치 제어 */
.genframe-shotsi790-toggle-container {
  display: inline-flex;
  background: #ffffff;
  border-radius: 50px;
  padding: 3px;
  gap: 4px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

/* 토글 버튼 */
.genframe-toggle-btn {
  padding: 14px 40px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: #9ca3af;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* 토글 버튼 화살표 아이콘 */
.genframe-toggle-btn .btn-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* 토글 버튼 호버 - active가 아닌 버튼만 반응 */
.genframe-toggle-btn:not(.active):hover {
  background: #000000;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* 토글 버튼 호버 시 화살표 움직임 */
.genframe-toggle-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* 토글 버튼 선택 상태 */
.genframe-toggle-btn.active {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* 모달 오버레이 */
.genframe-shotsi790-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.genframe-shotsi790-modal.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 모달 컨텐츠 */
.genframe-shotsi790-modal-content {
  background: rgb(255, 255, 255);
  border-radius: 16px;
  width: 90%;
  max-width: 750px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 모달 헤더 */
.genframe-shotsi790-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: linear-gradient(135deg, #f9fafb 0%, #f9fafb 100%);
  color: #1f2937;
  border-bottom: 1px solid #e5e7eb;
}

.genframe-shotsi790-modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.genframe-shotsi790-close {
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000000;
}

.genframe-shotsi790-close:hover {
  background: transparent;
  transform: rotate(90deg);
  color: #000000;
}

/* 모달 바디 */
.genframe-shotsi790-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

/* 단계 인디케이터 */
.genframe-shotsi790-step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 0 52px 0;
  gap: 60px;
}

.genframe-shotsi790-step-indicator .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.genframe-shotsi790-step-indicator .step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  background: #e8e8e8;
  color: #9e9e9e;
  border: 2px solid #e8e8e8;
  transition: all 0.3s ease;
  position: relative;
}

.genframe-shotsi790-step-indicator .step-num {
  display: block;
}

.genframe-shotsi790-step-indicator .step-check {
  display: none;
  font-size: 16px;
}

.genframe-shotsi790-step-indicator .step-text {
  font-size: 12px;
  font-weight: 400;
  color: #bdbdbd;
  transition: all 0.3s ease;
}

/* 활성화 상태 (진행 중) */
.genframe-shotsi790-step-indicator .step.active .step-number {
  background: #000000;
  color: white;
  border: 2px solid #000000;
}

.genframe-shotsi790-step-indicator .step.active .step-text {
  color: #333333;
  font-weight: 600;
}

/* 완료 상태 */
.genframe-shotsi790-step-indicator .step.completed .step-number {
  background: #000000;
  color: white;
  border: 2px solid #000000;
}

.genframe-shotsi790-step-indicator .step.completed .step-num {
  display: none;
}

.genframe-shotsi790-step-indicator .step.completed .step-check {
  display: block;
}

.genframe-shotsi790-step-indicator .step.completed .step-text {
  color: #333333;
  font-weight: 600;
}

/* 폼 스타일 */
.genframe-shotsi790-form {
  margin-top: 24px;
}

.genframe-shotsi790-form h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #1f2937;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* 라디오 버튼 그룹 스타일 */
.radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.radio-group-horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-group-wrap {
  flex-wrap: wrap;
  gap: 16px;
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  color: #374151;
  transition: all 0.3s ease;
  position: relative;
  gap: 10px;
  vertical-align: middle;
}

.radio-label:hover {
  color: #000000;
}

.radio-label:hover .toggle-text {
  color: #000000;
}

/* 기본 라디오 버튼 숨기기 */
.radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  cursor: pointer;
}

/* 토글 스위치 스타일 */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  background-color: #dadada;
  border-radius: 24px;
  transition: all 0.3s ease;
}

/* 토글 스위치 원 */
.toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background-color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 체크된 상태 - 배경 검정색 */
.radio-label input[type="radio"]:checked + .toggle-switch {
  background-color: #000000;
}

/* 체크된 상태 - 원 이동 */
.radio-label input[type="radio"]:checked + .toggle-switch::after {
  left: 23px;
}

/* 토글 텍스트 */
.toggle-text {
  font-size: 15px;
  color: #374151;
  user-select: none;
}

/* 인라인 입력 필드 스타일 */
.form-control-inline {
  width: 120px;
  padding: 8px 12px;
  border: 2px solid hsl(220, 13%, 91%);
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-control-inline:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* 주소 검색 그룹 스타일 */
.address-search-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.form-control-postcode {
  flex: 1;
}

.btn-address-search {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #000000 !important;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-address-search:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #000000 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-address-search .material-icons {
  font-size: 18px;
}

.btn-address-search:active {
  transform: translateY(0);
}

/* 모달 푸터 */
.genframe-shotsi790-modal-footer {
  padding: 20px 32px;
  background: #f9fafb;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #e5e7eb;
}

.genframe-shotsi790-modal-footer button {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 90px;
}

.btn-secondary {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000 !important;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000 !important;
}

.btn-primary {
  background: #000000;
  color: white !important;
  border: none !important;
}

.btn-primary:hover {
  background: #000000;
  color: white !important;
  border: none !important;
}

/* 단계 컨텐츠 */
.genframe-shotsi790-step-content {
  display: none;
}

.genframe-shotsi790-step-content.active {
  display: block;
}

/* 방개수 수정 버튼 */
.room-count-modify {
  margin-bottom: 20px;
  text-align: right;
}

.btn-modify-room-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #000000 !important;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-modify-room-count:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #000000 !important;
}

.btn-modify-room-count .material-icons {
  font-size: 16px;
}

/* 방 아코디언 */
.room-accordion {
  margin: 20px 0;
}

.room-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.room-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: #f9fafb;
  cursor: pointer;
  transition: all 0.3s ease;
}

.room-header:hover {
  background: #f3f4f6;
}

.room-title {
  font-weight: 600;
  font-size: 16px;
}

.room-expand-icon {
  display: flex;
  align-items: center;
}

.room-expand-icon .material-icons {
  transition: transform 0.3s ease;
  color: #6b7280;
}

.room-item.active .room-expand-icon .material-icons {
  transform: rotate(180deg);
}

.room-status {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  margin-right: 20px;
}

/* 헤더의 외부창 토글 */
.external-toggle-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.external-toggle-header .toggle-label {
  font-weight: 500;
  font-size: 14px;
  color: #374151;
}

.external-toggle-header .radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* 외부창 토글 활성화 상태 */
.external-toggle-header .radio-label[data-checked="true"] .toggle-switch {
  background-color: #000000;
}

.external-toggle-header
  .radio-label[data-checked="true"]
  .toggle-switch::after {
  left: 23px;
}

.room-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.room-item.active .room-content {
  max-height: 1000px;
  padding: 20px;
}

/* 창문 섹션 */
.window-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.external-window-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: #f9fafb;
  border-radius: 8px;
}

.toggle-label {
  font-weight: 600;
  font-size: 15px;
}

/* 창문 입력 그룹 */
.window-input-group {
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.window-input-group h4 {
  margin: 0 0 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
}

.size-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.size-input {
  width: 100px;
  padding: 10px;
  text-align: center;
}

.size-separator {
  font-size: 18px;
  font-weight: 600;
  color: #6b7280;
}

.size-unit {
  font-size: 14px;
  color: #6b7280;
}

.window-type-group {
  display: flex;
  gap: 16px;
}

.external-window {
  display: none;
}

.external-window.show {
  display: block;
}

/* 체크 항목 스타일 */
.check-items-section {
  padding: 0;
}

.check-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.check-item:hover {
  background-color: #f9fafb;
}

.check-item input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.check-item .check-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  flex: 1;
}

.check-item .check-title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
}

.check-item .check-description {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
}

.check-item .check-cost {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.4;
}

.check-item input[type="checkbox"]:checked + .check-content .check-title {
  color: #0f766e;
}

.check-item input[type="checkbox"]:checked + .check-content .check-description {
  color: #374151;
}

.check-item input[type="checkbox"]:checked + .check-content .check-cost {
  color: #6b7280;
}

/* 반응형 */
@media (max-width: 768px) {
  .genframe-shotsi790-modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .genframe-shotsi790-modal-header,
  .genframe-shotsi790-modal-body,
  .genframe-shotsi790-modal-footer {
    padding: 20px;
  }

  .genframe-shotsi790-step-indicator {
    flex-wrap: nowrap;
    gap: 16px;
    margin: 20px 0 24px 0;
  }

  .genframe-shotsi790-step-indicator .step {
    font-size: 11px;
    padding: 4px;
    gap: 4px;
  }

  .genframe-shotsi790-step-indicator .step-number {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .genframe-shotsi790-step-indicator .step-text {
    font-size: 10px;
  }

  .radio-group-horizontal {
    flex-wrap: wrap;
  }

  .radio-label {
    margin-bottom: 8px;
  }

  .size-inputs {
    flex-wrap: wrap;
  }

  .size-input {
    width: 80px;
  }

  .window-type-group {
    flex-direction: column;
    gap: 8px;
  }
}

/* ================================
   3단계: 옵션 선택 스타일
   ================================ */

.option-category {
  margin-bottom: 32px;
}

.category-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e5e7eb;
}

.option-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.option-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.option-header .radio-label {
  cursor: pointer;
}

.option-name {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
}

.option-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.option-detail.show {
  max-height: 200px;
  margin-top: 16px;
}

/* 옵션 토글 활성화 상태 */
.option-header .radio-label[data-checked="true"] .toggle-switch {
  background-color: #000000;
}

.option-header .radio-label[data-checked="true"] .toggle-switch::after {
  left: 23px;
}

/* 잠금장치 타입 토글 - 기본형 (비활성화) */
.option-header .radio-label[data-type="basic"] .toggle-switch {
  background-color: #dadada;
}

.option-header .radio-label[data-type="basic"] .toggle-switch::after {
  left: 3px;
}

/* 잠금장치 타입 토글 - 고급형 (활성화) */
.option-header .radio-label[data-type="premium"] .toggle-switch {
  background-color: #000000;
}

.option-header .radio-label[data-type="premium"] .toggle-switch::after {
  left: 23px;
}

/* 방충망 타입 토글 - 기본형 (비활성화) */
.option-header .radio-label[data-screen-type="basic"] .toggle-switch {
  background-color: #dadada;
}

.option-header .radio-label[data-screen-type="basic"] .toggle-switch::after {
  left: 3px;
}

/* 방충망 타입 토글 - 고급형 (활성화) */
.option-header .radio-label[data-screen-type="premium"] .toggle-switch {
  background-color: #000000;
}

.option-header .radio-label[data-screen-type="premium"] .toggle-switch::after {
  left: 23px;
}

/* 유리옵션 타입 토글 - 기본형 (비활성화) */
.option-header .radio-label[data-glass-type="basic"] .toggle-switch {
  background-color: #dadada;
}

.option-header .radio-label[data-glass-type="basic"] .toggle-switch::after {
  left: 3px;
}

/* 유리옵션 타입 토글 - 고급형 (활성화) */
.option-header .radio-label[data-glass-type="premium"] .toggle-switch {
  background-color: #000000;
}

.option-header .radio-label[data-glass-type="premium"] .toggle-switch::after {
  left: 23px;
}

/* ================================
   4단계: 견적서 스타일
   ================================ */

/* 견적 안내 */
.quote-intro {
  max-width: 700px;
  margin: 0 auto;
}

.quote-notice {
  display: flex;
  gap: 16px;
  background: #e8f4f8;
  border: 1px solid #b8dce8;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 32px;
}

.notice-icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}

.notice-icon .material-icons {
  font-size: 24px;
  color: #1976d2;
  background: transparent;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-content {
  flex: 1;
}

.notice-text {
  font-size: 14px;
  line-height: 1.6;
  color: #2c5a7a;
  margin-bottom: 16px;
}

.notice-text strong {
  color: #1a4d6b;
  font-weight: 600;
}

.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-list li {
  font-size: 13px;
  color: #456b82;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.notice-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1976d2;
  font-weight: bold;
}

.quote-action {
  text-align: center;
}

.btn-quote-request {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: #000000;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-quote-request:hover {
  background: #333333;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-quote-request .material-icons {
  font-size: 22px;
}

/* 휴대폰 인증 */
.phone-verification {
  max-width: 500px;
  margin: 0 auto;
}

.verification-header {
  text-align: center;
  margin-bottom: 32px;
}

.verification-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px 0;
}

.verification-header p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.verification-step {
  margin-bottom: 24px;
}

.required {
  color: #ef4444;
}

.phone-input-group,
.code-input-group {
  display: flex;
  gap: 10px;
}

.phone-input-group .form-control,
.code-input-group .form-control {
  flex: 1;
}

.btn-send-code,
.btn-verify-code {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: #000000;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 140px;
  justify-content: center;
}

.btn-send-code:hover:not(:disabled),
.btn-verify-code:hover:not(:disabled) {
  background: #333333;
}

.btn-send-code:disabled,
.btn-verify-code:disabled {
  background: #d1d5db;
  cursor: not-allowed;
}

.btn-send-code .material-icons,
.btn-verify-code .material-icons {
  font-size: 18px;
}

/* 개인정보 동의 */
.privacy-agreement {
  margin-top: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
}

.checkbox-custom .material-icons {
  font-size: 16px;
  color: white;
  display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: #000000;
  border-color: #000000;
}

.checkbox-label
  input[type="checkbox"]:checked
  + .checkbox-custom
  .material-icons {
  display: block;
}

.checkbox-text {
  user-select: none;
}

.checkbox-text a {
  color: #000000;
  text-decoration: underline;
  font-weight: 600;
}

.checkbox-text a:hover {
  color: #333333;
}

/* 인증번호 타이머 */
.verification-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: #ef4444;
  font-size: 14px;
  font-weight: 600;
}

.verification-timer .material-icons {
  font-size: 18px;
}

/* 재전송 버튼 */
.resend-code {
  text-align: center;
  margin-top: 16px;
}

.btn-resend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: transparent;
  color: #6b7280;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-resend:hover {
  background: #f9fafb;
  color: #374151;
  border-color: #9ca3af;
}

.btn-resend .material-icons {
  font-size: 16px;
}

/* 인증 완료 */
.quote-result {
  text-align: center;
}

.result-success {
  margin-bottom: 32px;
}

.result-success .material-icons {
  font-size: 64px;
  color: #10b981;
  margin-bottom: 12px;
}

.result-success p {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

/* 견적 요약 */
.quote-summary {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}

.quote-summary h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 20px 0;
  text-align: center;
}

.summary-content {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-label {
  font-weight: 500;
  color: #6b7280;
}

.summary-value {
  font-weight: 600;
  color: #1f2937;
}

/* ============================================
   간편견적 스타일
   ============================================ */

/* 버튼 컨테이너 - 하단 고정 */
.genframe-shotsi790-buttons-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-top: 1px solid #e5e7eb;
}

/* 버튼 기본 스타일 재정의 (두 개 버튼용) */
.genframe-shotsi790-buttons-container .genframe-shotsi790-btn {
  flex: 0 0 auto;
  width: auto;
  min-width: auto;
  max-width: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 28px;
  position: relative;
}

.genframe-shotsi790-buttons-container .btn-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.genframe-shotsi790-buttons-container .btn-subtitle {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.8;
  line-height: 1;
}

.genframe-shotsi790-buttons-container .btn-icon {
  margin-bottom: 0;
}

/* 간편견적 버튼 특별 스타일 */
.genframe-shotsi790-btn-simple {
  border: none;
}

.genframe-shotsi790-btn-simple .btn-icon {
  background: rgba(0, 0, 0, 0.08);
  transform: translateX(-5px);
}

.genframe-shotsi790-btn-simple:hover .btn-icon {
  background: rgba(0, 0, 0, 0.12);
  transform: translateX(-5px) rotate(360deg);
}

.genframe-shotsi790-btn-simple .btn-text {
  transform: translateX(5px);
}

/* 맞춤견적 버튼 */
.genframe-shotsi790-btn-detailed {
  background: #215bc2;
  border: 2px solid #215bc2;
}

.genframe-shotsi790-btn-detailed .btn-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-5px);
}

.genframe-shotsi790-btn-detailed:hover {
  background: #215bc2;
}

.genframe-shotsi790-btn-detailed:hover .btn-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-5px) rotate(360deg);
}

.genframe-shotsi790-btn-detailed .btn-text {
  transform: translateX(5px);
}

/* 단일 버튼 스타일 (개별 단축코드용) */
.genframe-shotsi790-btn-single {
  max-width: 400px;
  margin: 0 auto;
}

/* 간편견적 모달 컨텐츠 */
.genframe-shotsi790-simple-content {
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
}

/* 간편견적 폼 */
.simple-quote-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* 간편 폼 그룹 */
.simple-form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 맞춤견적 폼에만 적용되는 간격 */
.genframe-shotsi790-form .simple-form-group {
  margin-bottom: 35px;
}

.simple-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.simple-label .label-icon {
  font-size: 20px;
  color: #000000;
}

.simple-label .value-display {
  margin-left: auto;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  padding: 4px 12px;
  background: #f3f4f6;
  border-radius: 8px;
}

/* 총 창문 개수 뱃지 */
.total-window-badge {
  margin-left: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #6b7280;
  padding: 3px 10px;
  background: #f3f4f6;
  border-radius: 12px;
}

/* 슬라이더 */
.slider-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.simple-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e5e7eb;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.simple-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #000000;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.simple-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.simple-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #000000;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.simple-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6b7280;
  padding: 0 4px;
}

/* 카운터 (창문 수량) */
.counter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 12px;
}

.counter-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #000000;
  background: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.counter-btn:hover {
  background: #000000;
  color: #ffffff;
  transform: scale(1.05);
}

.counter-btn:active {
  transform: scale(0.95);
}

.counter-btn .material-icons {
  font-size: 24px;
}

.counter-input {
  width: 80px;
  height: 48px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  background: #ffffff;
}

/* 창문 수량 체크박스 그룹 */
.window-room-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.window-room-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding: 6px 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  transition: all 0.2s ease;
  user-select: none;
}

.window-room-checkbox:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.window-room-checkbox input[type="checkbox"] {
  margin: 0;
  margin-right: 5px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #000000;
}

.window-room-checkbox input[type="checkbox"]:checked {
  accent-color: #000000;
}

.window-room-checkbox .checkbox-text {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
}

.window-room-checkbox input[type="checkbox"]:checked ~ .checkbox-text {
  color: #000000;
  font-weight: 600;
}

.window-room-checkbox .room-count {
  font-size: 14px;
  color: #6b7280;
  margin-left: 0;
}

.window-room-checkbox
  input[type="checkbox"]:checked
  ~ .checkbox-text
  .room-count {
  color: #000000;
  font-weight: 700;
}

/* 지역 선택 */
.simple-select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.simple-select:focus {
  outline: none;
  border-color: #000000;
}

/* 견적 결과 박스 */
.quote-result-box {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.result-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #6b7280;
}

.result-header .material-icons {
  font-size: 24px;
  color: #000000;
}

.result-price {
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  text-align: center;
}

.price-range {
  font-size: 18px;
  color: #4b5563;
}

.price-range strong {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  transition: opacity 0.3s ease;
}

.result-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
  padding: 12px;
  background: #ffffff;
  border-radius: 8px;
}

.result-info .material-icons {
  font-size: 18px;
  color: #9ca3af;
}

.confidence-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #059669;
  align-self: flex-start;
}

.confidence-badge .material-icons {
  font-size: 18px;
  color: #059669;
}

/* 정밀견적 전환 버튼 */
.convert-to-detailed {
  margin-top: 8px;
}

.btn-convert {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-convert:hover {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-convert:active {
  transform: scale(0.98);
}

.btn-convert .material-icons {
  font-size: 24px;
}

.btn-convert .btn-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px 10px;
  background: #10b981;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

/* 반응형 */
@media (max-width: 640px) {
  .genframe-shotsi790-buttons-container {
    flex-direction: column;
  }

  .genframe-shotsi790-buttons-container .genframe-shotsi790-btn {
    max-width: none;
  }

  .genframe-shotsi790-simple-content {
    max-width: 95vw;
  }

  .simple-quote-form {
    gap: 20px;
  }

  .price-range strong {
    font-size: 28px;
  }
}

/* 읽기 전용 필드 스타일 */
.readonly-field input[type="number"],
.readonly-field input[type="text"],
input.readonly-field {
  background-color: #f9fafb !important;
  color: #6b7280 !important;
  cursor: not-allowed !important;
  border-color: #e5e7eb !important;
}

/* 비활성화된 라디오 버튼 스타일 */
.readonly-field .radio-label {
  cursor: not-allowed !important;
  opacity: 0.7;
}

.readonly-field .radio-label input[type="radio"]:disabled {
  cursor: not-allowed !important;
}

.readonly-field .radio-label input[type="radio"]:disabled ~ .toggle-switch {
  background-color: #e5e7eb !important;
  cursor: not-allowed !important;
}

.readonly-field
  .radio-label
  input[type="radio"]:disabled:checked
  ~ .toggle-switch {
  background-color: #9ca3af !important;
}

.readonly-field .radio-label input[type="radio"]:disabled ~ .toggle-text {
  color: #9ca3af !important;
}

/* 기본 정보 수정 버튼 호버 */
.btn-modify-basic-info:hover {
  background: #f9fafb !important;
  border-color: #d1d5db !important;
  color: #111827 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 방 헤더 레이아웃 - 양쪽 정렬 */
.room-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 방 헤더 오른쪽 그룹 */
.room-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 통합 토글 스위치 컨테이너 */
.window-type-toggle-unified {
  position: relative;
  display: inline-flex;
  background: #f3f4f6;
  border-radius: 50px;
  padding: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 라디오 버튼 숨김 */
.window-type-toggle-unified input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* 토글 옵션 라벨 */
.window-type-toggle-unified .toggle-option {
  position: relative;
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2;
  user-select: none;
}

/* 토글 슬라이더 */
.window-type-toggle-unified .toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: #000000;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  z-index: 1;
}

/* 단창 선택 시 */
.window-type-toggle-unified input[value="single"]:checked ~ .toggle-slider {
  transform: translateX(0);
}

/* 이중창 선택 시 - 슬라이더 오른쪽으로 이동 */
.window-type-toggle-unified input[value="double"]:checked ~ .toggle-slider {
  transform: translateX(100%);
}

/* 단창 선택 시 텍스트 색상 */
.window-type-toggle-unified
  input[value="single"]:checked
  ~ label[for$="_single"] {
  color: #ffffff;
  font-weight: 600;
}

/* 이중창 선택 시 텍스트 색상 */
.window-type-toggle-unified
  input[value="double"]:checked
  ~ label[for$="_double"] {
  color: #ffffff;
  font-weight: 600;
}

/* 토글 호버 효과 */
.window-type-toggle-unified .toggle-option:hover {
  color: #6b7280;
}

/* 창문 입력 목록 */
.window-input-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

/* 창문 입력 행 */
.window-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.window-input-row:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

/* 개수 구분자 */
.count-separator {
  font-size: 16px;
  font-weight: 500;
  color: #9ca3af;
  margin: 0 4px;
}

/* 개수 입력 그룹 */
.count-inputs {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 개수 입력 필드 */
.count-input {
  width: 70px;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  text-align: center;
  transition: all 0.2s ease;
}

.count-input:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* 개수 단위 */
.count-unit {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}


/* ============================================
   모바일 반응형 스타일
   ============================================ */

/* 태블릿 & 모바일 (768px 이하) */
@media (max-width: 768px) {
  .genframe-shotsi790-toggle-container {
    padding: 2px;
    gap: 3px;
  }

  .genframe-toggle-btn {
    padding: 12px 30px;
    font-size: 15px;
    gap: 4px;
  }

  .genframe-toggle-btn .btn-arrow {
    font-size: 16px;
  }
}

/* 작은 모바일 (480px 이하) */
@media (max-width: 480px) {
  .genframe-toggle-btn {
    padding: 5px 24px;
    font-size: 14px;
  }

  .genframe-toggle-btn .btn-arrow {
    font-size: 15px;
  }
}

/* 아주 작은 모바일 (360px 이하) */
@media (max-width: 360px) {
  .genframe-toggle-btn {
    padding: 8px 20px;
    font-size: 13px;
  }

  .genframe-toggle-btn .btn-arrow {
    font-size: 14px;
  }
}

/* ============================================
   견적서 스타일
   ============================================ */

.quote-document {
  max-width: 100%;
  margin: 0 auto;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 견적서 헤더 */
.quote-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 30px;
  border-bottom: 3px solid #000000;
  margin-bottom: 30px;
}

.quote-company h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 5px 0;
}

.quote-company p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

.quote-title {
  text-align: left;
}

.quote-title h1 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 15px 0;
  letter-spacing: 10px;
}

.quote-meta {
  font-size: 13px;
  color: #666666;
}

.quote-meta p {
  margin: 5px 0;
}

.quote-meta span {
  font-weight: 600;
  color: #000000;
}

/* 견적서 섹션 */
.quote-section {
  margin-bottom: 30px;
}

.quote-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 15px 0;
  padding: 8px 12px;
  background: #f5f5f5;
  border-left: 4px solid #000000;
  text-align: left;
}

/* 테이블 공통 스타일 */
.quote-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.quote-section table th,
.quote-section table td {
  padding: 12px;
  border: 1px solid #dddddd;
  text-align: left;
}

.quote-section table th {
  background: #f9f9f9;
  font-weight: 600;
  color: #333333;
  text-align: center;
}

.quote-section table td {
  color: #666666;
}

/* 고객 정보 테이블 */
.info-table th {
  width: 15%;
  background: #f5f5f5;
}

.info-table td {
  width: 35%;
}

/* 견적 항목 테이블 */
.items-table thead th {
  background: #333333;
  color: #ffffff;
}

.items-table tbody td {
  text-align: center;
}

.items-table tbody td:nth-child(1) {
  text-align: left;
  font-weight: 600;
}

.items-table tbody td:nth-child(3),
.items-table tbody td:nth-child(4),
.items-table tbody td:nth-child(5) {
  text-align: right !important;
  font-weight: 600;
}

/* 옵션 테이블 */
.options-table thead th {
  background: #555555;
  color: #ffffff;
}

.options-table tbody td {
  text-align: center;
}

.options-table tbody td:nth-child(1) {
  text-align: left;
  font-weight: 600;
}

.options-table tbody td:nth-child(3) {
  text-align: right !important;
  font-weight: 600;
}

/* 합계 테이블 */
.total-table {
  max-width: 400px;
  margin-left: auto;
}

.total-table th {
  width: 60%;
  background: #f5f5f5;
  text-align: right;
  font-size: 15px;
}

.total-table td {
  width: 40%;
  text-align: right !important;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}

.total-table .total-row th {
  background: #000000;
  color: #ffffff;
  font-size: 18px;
  padding: 15px 12px;
}

.total-table .total-row td {
  background: #f5f5f5;
  font-size: 20px;
  color: #e74c3c;
  padding: 15px 12px;
}

/* 유의사항 */
.quote-notes {
  text-align: left;
}

.quote-notes h3 {
  text-align: left;
  margin-bottom: 16px;
}

.quote-notes > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  text-align: left;
  max-width: 100%;
}

.quote-notes ul li {
  padding: 3px 0;
  padding-left: 20px;
  position: relative;
  color: #666666;
  font-size: 13px;
  line-height: 1.6;
}

.quote-notes ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
}

.quote-notes ul ul {
  display: block;
  margin: 3px 0 0 0;
  padding-left: 20px;
}

.quote-notes ul ul li {
  font-size: 12px;
  color: #999999;
}

.quote-notes strong {
  color: #000000;
  font-weight: 600;
}

/* 액션 버튼 */
.quote-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #eeeeee;
}

.quote-actions button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quote-actions .btn-print {
  background: #000000;
  color: #ffffff;
}

.quote-actions .btn-print:hover {
  background: #333333;
}

.quote-actions .btn-close-quote {
  background: #eeeeee;
  color: #333333;
}

.quote-actions .btn-close-quote:hover {
  background: #dddddd;
}

.quote-actions button .material-icons {
  font-size: 20px;
}

/* 프린트 스타일 */
@media print {
  .quote-document {
    box-shadow: none;
    padding: 20px;
  }

  .quote-actions {
    display: none !important;
  }

  .genframe-shotsi790-modal-header,
  .genframe-shotsi790-modal-footer {
    display: none !important;
  }

  .quote-section table th,
  .quote-section table td {
    padding: 8px;
    font-size: 12px;
  }

  .quote-title h1 {
    font-size: 28px;
  }

  .quote-company h2 {
    font-size: 22px;
  }
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .quote-document {
    padding: 20px;
  }

  .quote-header {
    flex-direction: column;
    gap: 20px;
  }

  .quote-title {
    text-align: left;
  }

  .quote-title h1 {
    font-size: 28px;
    letter-spacing: 5px;
  }

  .quote-section table {
    font-size: 12px;
  }

  .quote-section table th,
  .quote-section table td {
    padding: 8px 6px;
  }

  .info-table th {
    width: 25%;
  }

  .total-table {
    max-width: 100%;
  }

  .quote-actions {
    flex-direction: column;
  }

  .quote-actions button {
    width: 100%;
  }
}

/* ============================================
   반응형 디자인 개선 (v6.7.0)
   ============================================ */

/* 1. 모바일 입력 필드 크기 최적화 */
@media (max-width: 768px) {
  /* 모든 입력 필드 터치 친화적 크기 */
  .form-control,
  .form-control-inline,
  .form-control-postcode,
  .simple-select {
    min-height: 48px;
    padding: 14px 16px;
    font-size: 16px; /* iOS 자동 줌 방지 */
  }

  /* 크기 입력 필드 */
  .size-input,
  .count-input {
    min-height: 48px;
    padding: 12px;
    font-size: 16px;
  }

  /* 슬라이더 터치 영역 확대 */
  .simple-slider {
    height: 12px;
  }

  .simple-slider::-webkit-slider-thumb {
    width: 32px;
    height: 32px;
  }

  .simple-slider::-moz-range-thumb {
    width: 32px;
    height: 32px;
  }
}

/* 2. 터치 인터페이스 개선 - 최소 44px 보장 */
@media (max-width: 768px) {
  /* 모든 버튼 최소 터치 타겟 크기 */
  .genframe-shotsi790-btn,
  .genframe-toggle-btn,
  .btn-primary,
  .btn-secondary,
  .btn-address-search,
  .btn-send-code,
  .btn-verify-code,
  .btn-quote-request,
  .btn-convert {
    min-height: 48px;
    padding: 14px 24px;
    font-size: 16px;
  }

  /* 카운터 버튼 */
  .counter-btn {
    width: 52px;
    height: 52px;
  }

  .counter-btn .material-icons {
    font-size: 28px;
  }

  /* 닫기 버튼 */
  .genframe-shotsi790-close {
    width: 44px;
    height: 44px;
  }

  .genframe-shotsi790-close .material-icons {
    font-size: 28px;
  }

  /* 라디오/체크박스 터치 영역 확대 */
  .radio-label,
  .checkbox-label {
    padding: 12px 8px;
    gap: 12px;
  }

  /* 토글 스위치 크기 증가 */
  .toggle-switch {
    width: 52px;
    height: 28px;
  }

  .toggle-switch::after {
    width: 22px;
    height: 22px;
  }

  .radio-label input[type="radio"]:checked + .toggle-switch::after {
    left: 27px;
  }

  /* 체크박스 크기 증가 */
  .checkbox-custom {
    width: 24px;
    height: 24px;
  }

  .checkbox-label input[type="checkbox"] {
    width: 24px;
    height: 24px;
  }

  /* 방 헤더 아코디언 터치 영역 */
  .room-header {
    padding: 20px;
    gap: 16px;
  }

  /* 옵션 카드 터치 영역 */
  .option-card {
    padding: 24px 20px;
  }
}

/* 3. 가로/세로 모드 대응 */
/* 세로 모드 (portrait) */
@media (max-width: 768px) and (orientation: portrait) {
  /* 모달 세로 모드 최적화 */
  .genframe-shotsi790-modal-content {
    width: 95%;
    max-height: 85vh;
  }

  .genframe-shotsi790-modal-body {
    padding: 16px;
    max-height: calc(85vh - 160px);
  }

  /* 단계 인디케이터 간격 축소 */
  .genframe-shotsi790-step-indicator {
    gap: 12px;
    margin: 16px 0 24px 0;
  }

  .genframe-shotsi790-step-indicator .step-text {
    font-size: 10px;
  }

  /* 버튼 컨테이너 */
  .genframe-shotsi790-modal-footer {
    padding: 16px 20px;
    gap: 8px;
  }

  .genframe-shotsi790-modal-footer button {
    min-width: 100px;
  }
}

/* 가로 모드 (landscape) */
@media (max-width: 768px) and (orientation: landscape) {
  /* 모달 가로 모드 최적화 */
  .genframe-shotsi790-modal-content {
    width: 90%;
    max-height: 90vh;
  }

  .genframe-shotsi790-modal-body {
    padding: 16px 24px;
    max-height: calc(90vh - 140px);
  }

  /* 폼 그룹 간격 축소 */
  .simple-form-group {
    gap: 8px;
  }

  .genframe-shotsi790-form .simple-form-group {
    margin-bottom: 20px;
  }

  /* 헤더/푸터 패딩 축소 */
  .genframe-shotsi790-modal-header {
    padding: 16px 24px;
  }

  .genframe-shotsi790-modal-header h2 {
    font-size: 20px;
  }

  /* 단계 인디케이터 높이 축소 */
  .genframe-shotsi790-step-indicator {
    margin: 12px 0 20px 0;
    gap: 24px;
  }

  .genframe-shotsi790-step-indicator .step-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .genframe-shotsi790-step-indicator .step-text {
    font-size: 10px;
  }
}

/* 4. 작은 화면에서 모달 높이 조정 */
@media (max-width: 480px) {
  /* 아주 작은 화면 최적화 */
  .genframe-shotsi790-modal-content {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .genframe-shotsi790-modal-body {
    padding: 12px 16px;
    max-height: calc(100vh - 140px);
  }

  .genframe-shotsi790-modal-header {
    padding: 16px 20px;
  }

  .genframe-shotsi790-modal-footer {
    padding: 12px 16px;
  }

  /* 견적 결과 박스 패딩 축소 */
  .quote-result-box {
    padding: 16px;
  }

  .result-price {
    padding: 16px;
  }

  /* 방 아코디언 패딩 축소 */
  .room-item.active .room-content {
    padding: 16px;
  }

  /* 창문 입력 그룹 */
  .window-input-group {
    padding: 12px;
  }

  /* 옵션 카드 */
  .option-card {
    padding: 16px;
  }
}

/* 작은 화면 세로 모드 */
@media (max-width: 480px) and (orientation: portrait) {
  .genframe-shotsi790-modal-content {
    max-height: 100vh;
  }

  .genframe-shotsi790-modal-body {
    max-height: calc(100vh - 130px);
  }

  /* 단계 인디케이터 더 축소 */
  .genframe-shotsi790-step-indicator {
    gap: 8px;
    margin: 12px 0 20px 0;
  }

  .genframe-shotsi790-step-indicator .step-number {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .genframe-shotsi790-step-indicator .step-text {
    font-size: 9px;
  }
}

/* 5. 폰트 크기 반응형 조정 */
@media (max-width: 768px) {
  /* 헤더 타이틀 */
  .genframe-shotsi790-modal-header h2 {
    font-size: 20px;
  }

  /* 폼 라벨 */
  .form-group label,
  .simple-label {
    font-size: 15px;
  }

  /* 폼 제목 */
  .genframe-shotsi790-form h3 {
    font-size: 18px;
  }

  /* 카테고리 타이틀 */
  .category-title {
    font-size: 16px;
  }

  /* 옵션 이름 */
  .option-name {
    font-size: 15px;
  }

  /* 방 타이틀 */
  .room-title {
    font-size: 15px;
  }

  /* 견적 가격 */
  .price-range strong {
    font-size: 28px;
  }

  /* 버튼 텍스트 */
  .btn-text {
    font-size: 15px;
  }

  /* 토글 라벨 */
  .toggle-label {
    font-size: 14px;
  }

  /* 체크 항목 */
  .check-item .check-title {
    font-size: 13px;
  }

  .check-item .check-description {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  /* 더 작은 화면에서 폰트 추가 축소 */
  .genframe-shotsi790-modal-header h2 {
    font-size: 18px;
  }

  .genframe-shotsi790-form h3 {
    font-size: 16px;
  }

  .form-group label,
  .simple-label {
    font-size: 14px;
  }

  .category-title {
    font-size: 15px;
  }

  .option-name {
    font-size: 14px;
  }

  .room-title {
    font-size: 14px;
  }

  .price-range strong {
    font-size: 24px;
  }

  .btn-text {
    font-size: 14px;
  }

  /* 안내 텍스트 */
  .notice-text {
    font-size: 13px;
  }

  .notice-list li {
    font-size: 12px;
  }

  .result-info {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  /* 아주 작은 화면 폰트 최소화 */
  .genframe-shotsi790-modal-header h2 {
    font-size: 16px;
  }

  .genframe-shotsi790-form h3 {
    font-size: 15px;
  }

  .form-group label,
  .simple-label {
    font-size: 13px;
  }

  .price-range strong {
    font-size: 22px;
  }

  .btn-text {
    font-size: 13px;
  }

  /* 입력 필드 폰트는 16px 유지 (iOS 줌 방지) */
  .form-control,
  .form-control-inline,
  .size-input,
  .count-input,
  .simple-select {
    font-size: 16px;
  }
}
