/**
 * Install Request Form Styles
 * 
 * Styles for installation request form and related components
 * Uses common variables and mixins for consistency
 */
/**
 * Global SCSS Variables
 * 
 * Implements the design system from STYLE.md
 * All design tokens are centralized here
 */
/**
 * Global SCSS Mixins
 * 
 * Reusable mixins for consistent styling patterns
 * Import variables before using these mixins
 */
/**
 * Responsive Breakpoints
 * Mobile-first approach
 */
/**
 * Button Base
 * Standard button styling foundation
 */
/**
 * Button Variants
 */
/**
 * Button Sizes
 */
/**
 * Card Component
 */
/**
 * Form Controls
 */
/**
 * Flexbox Utilities
 */
/**
 * Grid Layout
 */
/**
 * Text Utilities
 */
/**
 * Spacing Utilities
 */
/**
 * Visual Effects
 */
@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/**
 * Accessibility
 */
/**
 * Enhanced Grid System
 * Flexible grid system with responsive behavior
 */
/**
 * Card Component Enhancement
 * Consistent card styling across all pages
 */
/**
 * Overlay Pattern
 * For image overlays with gradient
 */
/**
 * Button Variations
 * Extended button styles for consistency
 */
/**
 * Form Control Variations
 * Additional form patterns
 */
/**
 * Loading States
 * Consistent loading patterns
 */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/**
 * Responsive Typography
 * Fluid type sizing
 */
/**
 * Aspect Ratio
 * Maintain aspect ratios for media
 */
/**
 * Container Query Support
 * Progressive enhancement for container queries
 */
/**
 * Dark Mode Support
 * Prepare for future dark mode implementation
 */
/**
 * Banner Base Mixin
 * Consistent banner foundation
 */
/**
 * Banner Image Mixin
 * Consistent image styling
 */
/**
 * Responsive Banner Mixin
 * Handles aspect ratio changes
 */
/**
 * Banner Loading State
 * Shows loading skeleton
 */
/**
 * Banner Error State
 * Shows error state
 */
/**
 * Product Card Base
 * Consistent product card styling
 */
/**
 * Product Image Container
 * Maintains aspect ratio for product images
 */
/**
 * Price Display
 * Consistent price formatting
 */
/**
 * Sale Price
 * Styling for discounted prices
 */
/**
 * Form Group
 * Consistent form field grouping
 */
/**
 * Table Base
 * Consistent table styling
 */
/**
 * Badge
 * Small label components
 */
/**
 * Modal Base
 * Consistent modal styling
 */
/**
 * Smooth Scroll
 * Enable smooth scrolling behavior
 */
/**
 * Custom Scrollbar
 * Styled scrollbar for webkit browsers
 */
/**
 * Tab List
 * Horizontal tab navigation
 */
/**
 * Tab Item
 * Individual tab styling
 */
/**
 * Pagination
 * Page navigation styling
 */
/**
 * Responsive Image
 * Optimized image loading with placeholder
 */
/**
 * Sticky Position
 * Cross-browser sticky positioning
 */
/**
 * Visually Hidden
 * Hide element visually but keep accessible
 */
/**
 * Reset List
 * Remove default list styling
 */
/**
 * Reset Button
 * Remove default button styling
 */
/**
 * Link Reset
 * Remove default link styling
 */
#install-request-container {
  max-width: 768px;
  width: 100%;
  margin: 2.5rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: "Noto Sans KR", sans-serif;
}
#install-request-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #333333;
}
.install-request-note {
  color: #dc3545;
  font-size: 0.875rem;
  font-weight: 500;
}
#install-request-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #333333;
}
#install-request-form input[type="text"], #install-request-form input[type="tel"], #install-request-form input[type="date"], #install-request-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 0.5rem;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  margin-bottom: 0.75rem;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 600;
}
#install-request-form input[type="text"]:focus, #install-request-form input[type="tel"]:focus, #install-request-form input[type="date"]:focus, #install-request-form textarea:focus {
  outline: 0;
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}
#install-request-form input[type="text"]::placeholder, #install-request-form input[type="tel"]::placeholder, #install-request-form input[type="date"]::placeholder, #install-request-form textarea::placeholder {
  color: #999999;
}
#install-request-form input[type="text"]:disabled, #install-request-form input[type="tel"]:disabled, #install-request-form input[type="date"]:disabled, #install-request-form textarea:disabled {
  background-color: #f6f6f6;
  cursor: not-allowed;
}
#install-request-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  color: #ffffff;
  background-color: #333333;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  background-color: #4CAF50;
  width: 100%;
  margin-top: 1.25rem;
}
#install-request-form input[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#install-request-form input[type="submit"]:hover:not(:disabled) {
  background-color: #222222;
}
#install-request-form input[type="submit"]:active:not(:disabled) {
  background-color: #111111;
}
#install-request-form input[type="submit"]:hover:not(:disabled) {
  background-color: #449d48;
}
#install-request-form input[readonly] {
  background-color: #f6f6f6;
}
#install-request-form #install_request_date {
  cursor: pointer;
  padding: 1.25rem 0.75rem;
  background-color: #77d3ff;
}
#install-request-form #install_request_date:hover {
  background-color: #5ecbff;
}
#install-request-form #install_request_date::placeholder {
  color: #0073aa;
}
.form-section.review-event-section {
  background-color: #f8f0ff;
  border-color: #b794d1;
}
.form-section.review-event-section .section-title {
  background-color: #f0e6ff;
  border-color: #b794d1;
  color: #6b46c1;
}
.form-section.review-event-section .event-description-wrapper {
  margin-bottom: 1rem;
}
.form-section.review-event-section .event-description {
  margin-bottom: 0.75rem;
  color: #333333;
  line-height: 1.5;
  font-size: 1rem;
}
.form-section.review-event-section .event-description .gift-highlight {
  font-weight: 700;
  color: #e9b042;
}
.form-section.review-event-section .event-detail-link {
  margin-top: 0.5rem;
}
.form-section.review-event-section .event-detail-link .detail-link {
  color: #0073aa;
  text-decoration: underline;
  font-size: 0.875rem;
}
.form-section.review-event-section .event-detail-link .detail-link:hover {
  color: #003f5e;
}
.form-section.review-event-section .radio-options .radio-option {
  margin-bottom: 0.5rem;
}
.form-section.review-event-section .radio-options .radio-option .radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.form-section.review-event-section .radio-options .radio-option .radio-label:hover {
  border-color: #4CAF50;
}
.form-section.review-event-section .radio-options .radio-option .radio-label .radio-text {
  font-weight: 400;
  color: #333333;
}
.form-section.review-event-section .radio-options .radio-option input[type="radio"] {
  display: none;
}
.form-section.review-event-section .radio-options .radio-option input[type="radio"]:checked + .radio-label {
  border-color: #4CAF50;
  background-color: #f5fbf5;
}
.form-section.review-event-section .radio-options .radio-option input[type="radio"]:checked + .radio-label .radio-text {
  color: #222222;
  font-weight: 500;
}
@media (max-width: 768px) {
  .form-section.review-event-section {
    margin-top: 0.75rem;
    padding: 0.75rem;
  }
  .form-section.review-event-section .section-title {
    font-size: 1rem;
  }
  .form-section.review-event-section .event-description {
    font-size: 0.875rem;
  }
  .form-section.review-event-section .radio-options .radio-option .radio-label {
    padding: 0.5rem;
  }
  .form-section.review-event-section .radio-options .radio-option .radio-label .radio-text {
    font-size: 0.875rem;
  }
}
.form-section.review-event-section .event-meta {
  margin-top: 0.75rem;
  padding: 0.5rem;
  text-align: center;
}
.form-section.review-event-section .event-meta small {
  color: #666666;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.25rem;
}
.form-section.review-event-section .event-meta small:last-child {
  margin-bottom: 0;
}
.form-section.review-event-section .event-meta small strong {
  color: #333333;
}
@media (prefers-contrast: high) {
  .review-event-section {
    background: #ffffff;
    border: 2px solid #000000;
  }
  .review-event-section .section-title {
    color: #000000;
  }
  .review-event-section .radio-options .radio-option .radio-label {
    border-color: #000000;
  }
  .review-event-section .radio-options .radio-option input[type="radio"]:checked + .radio-label {
    background-color: #000000;
  }
  .review-event-section .radio-options .radio-option input[type="radio"]:checked + .radio-label .radio-text {
    color: #ffffff;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  background-color: #ffffff;
  margin: 15% auto;
  padding: 1.25rem;
  border: 1px solid #999999;
  width: 80%;
  max-width: 600px;
  border-radius: 0.75rem;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.modal-header h3 {
  margin: 0;
  color: #333333;
}
.close {
  color: #999999;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}
.close:hover {
  color: #333333;
}
.loading-container {
  display: flex;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  margin-top: 0.75rem;
}
.loading-spinner {
  margin-bottom: 0.75rem;
}
.loading-spinner::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid #eeeeee;
  border-top-color: #0073aa;
  border-radius: 9999px;
  animation: spin 0.8s linear infinite;
}
.loading-container p {
  color: #0073aa;
  font-weight: 700;
}
.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}
.error-message.standalone {
  max-width: 600px;
  margin: 3rem auto;
  padding: 1.25rem;
  border: 1px solid #dc3545;
  background-color: #fae3e5;
  color: #bd2130;
  font-size: 1.125rem;
  text-align: center;
  border-radius: 0.5rem;
}
#calendar-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
#calendar-table th, #calendar-table td {
  text-align: center;
  padding: 10px;
  border: 1px solid #ddd;
}
#calendar-table th {
  background-color: #f8f9fa;
  color: #495057;
}
#calendar-table td.available {
  background-color: #e3f2fd;
  color: #1976d2;
  cursor: pointer;
  font-weight: bold;
}
#calendar-table td.available:hover {
  background-color: #bbdefb;
}
#calendar-table td.disabled {
  color: #999999;
  background-color: #fafafa;
}
#calendar-container {
  display: none;
}
#calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 0 10px;
}
#current-month-display {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
}
.month-nav {
  background: #fafafa;
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
  padding: 0.25rem 1rem;
  cursor: pointer;
  font-size: 1.125rem;
  color: #333333;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.month-nav:hover {
  background: #eeeeee;
  color: #333333;
}
.month-nav:active {
  background: #d9d9d9;
}
.address-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.address-row {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.address-field {
  flex: 2;
}
.address-detail-field {
  flex: 1;
}
.address-postcode-field {
  width: 100%;
}
.input-with-button {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.input-with-button #install_postcode {
  width: 120px !important;
  margin-bottom: 0 !important;
}
.radio-field-group {
  margin-bottom: 0.75rem;
}
.radio-field-group > label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #2c3e50;
  font-size: 1rem;
}
.radio-options {
  display: flex;
  gap: 1.25rem;
}
.radio-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1rem;
}
.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-option input[type="radio"]:checked + label {
  background: #91dbff;
  border-color: #0073aa;
  color: #0073aa;
}
.radio-option input[type="radio"]:focus + label {
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.25);
}
.radio-option input[type="radio"]:disabled + label {
  color: #999999;
  cursor: not-allowed;
  background-color: #d9d9d9;
}
.radio-option input[type="radio"]:disabled + label::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #999999;
  left: 0;
  top: 50%;
}
.radio-option label {
  position: relative;
  margin: 0;
  padding: 0.25rem 1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  color: #333333;
}
.radio-option label:hover {
  background: #f6f6f6;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 480px) {
  #install-request-container {
    padding: 1.25rem;
    margin: 1.25rem auto;
  }
  .form-section {
    padding: 1rem;
    margin-bottom: 1.25rem;
  }
  .form-section .section-title {
    margin: -2rem 0rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
  .modal-content {
    width: 100%;
    margin: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    border-radius: 0.75rem 0.75rem 0 0;
  }
  .radio-options {
    flex-direction: column;
    gap: 0.75rem;
  }
  .radio-options .radio-option label {
    width: 100%;
    display: block;
  }
  .install-submission-complete {
    padding: 1.25rem 0.75rem;
  }
  .install-submission-complete h2 {
    font-size: 1.25rem;
  }
  .install-submission-complete .message {
    font-size: 0.875rem;
  }
  .install-submission-complete .install-info-message {
    padding: 1rem;
    max-width: 100%;
  }
  .install-submission-complete .install-info-message pre {
    font-size: 0.875rem;
  }
  .install-submission-complete .install-process-image {
    margin-top: 2rem;
  }
  .install-submission-complete .install-process-image img {
    border-radius: 0.5rem;
  }
}
@media (max-width: 768px) {
  .address-row {
    flex-direction: column;
    gap: 1rem;
  }
  .address-field, .address-detail-field, .postcode-field {
    width: 100%;
  }
  .input-with-button {
    width: 100%;
  }
  .input-with-button #install_postcode {
    flex: 1;
  }
}
.install-submission-complete {
  text-align: center;
  padding: 2.5rem 1.25rem;
}
.install-submission-complete .success-icon {
  margin-bottom: 2rem;
  text-align: center;
}
.install-submission-complete .success-icon svg {
  width: 90px;
  height: 90px;
  animation: scale-in 0.5s ease-out;
}
.install-submission-complete h2 {
  color: #333333;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  animation: fade-in 0.5s ease-out 0.3s both;
  line-height: 1.5;
  word-break: keep-all;
}
.install-submission-complete .message {
  color: #333333;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  animation: fade-in 0.5s ease-out 0.6s both;
  word-break: keep-all;
  margin-bottom: 1.5rem;
}
.install-submission-complete .message br {
  content: "";
  display: block;
  margin-bottom: 0.25rem;
}
.install-submission-complete .install-info-message {
  margin-top: 2rem;
  padding: 1.25rem;
  background-color: #fafafa;
  border: 1px solid #d9d9d9;
  border-radius: 0.5rem;
  text-align: left;
  animation: fade-in 0.5s ease-out 0.9s both;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.install-submission-complete .install-info-message pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #333333;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.install-submission-complete .install-process-image {
  margin-top: 2.5rem;
  animation: fade-in 0.5s ease-out 1.2s both;
  max-width: 100%;
}
.install-submission-complete .install-process-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@keyframes scale-in {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    transform: translateY(1.25rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.form-section {
  margin-bottom: 2rem;
  padding: 4rem 1.25rem 1.25rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.5rem;
  background-color: #fafafa;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  position: relative;
}
.form-section:last-child {
  margin-bottom: 1.25rem;
}
.form-section .section-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0.75rem 1.25rem;
  background-color: #f6f6f6;
  border-bottom: 1px solid #d9d9d9;
  border-radius: 0.5rem 0.5rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
}
.form-section.active {
  border-color: #0073aa;
  box-shadow: 0 0 10px rgba(0, 115, 170, 0.1);
}
.form-section.active .section-title {
  background-color: #91dbff;
  border-color: #0073aa;
  color: #0073aa;
}
.form-section#additional-info-section {
  border-color: #c0a246;
}
.form-section#additional-info-section .section-title {
  background-color: #fff3cd;
  border-color: #c0a246;
  color: #856404;
}
.form-section#additional-info-section.active {
  border-color: #c0a246;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
}
.form-section#additional-info-section.active .section-title {
  background-color: #fff3cd;
  border-color: #c0a246;
  color: #856404;
}
.form-section#additional-info-section textarea {
  background-color: rgba(255, 255, 255, 0.7);
  border-color: #c0a246;
}
.form-section#additional-info-section textarea:focus {
  border-color: #ffc107;
  background-color: #ffffff;
}
.success-container {
  display: flex;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
}
.success-checkmark {
  width: 50px;
  height: 50px;
  margin-bottom: 0.75rem;
  position: relative;
}
.success-container p {
  color: #4CAF50;
  font-weight: 700;
}
.check-icon {
  width: 50px;
  height: 50px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
}
.check-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  animation: pulse 1s ease-in-out;
}
.icon-line {
  height: 6px;
  background-color: #4CAF50;
  display: block;
  position: absolute;
  border-radius: 0.25rem;
}
.icon-line.line-tip {
  width: 13px;
  top: 25px;
  left: 10px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}
.icon-line.line-long {
  width: 25px;
  top: 22px;
  right: 10px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
}
@keyframes icon-line-tip {
  0% {
    width: 0;
    left: 0;
    top: 16px;
  }
  30% {
    width: 10px;
    left: 8px;
    top: 28px;
  }
  70% {
    width: 16px;
    left: 10px;
    top: 30px;
  }
  100% {
    width: 13px;
    left: 12px;
    top: 28px;
  }
}
@keyframes icon-line-long {
  0% {
    width: 0;
    right: 25px;
    top: 30px;
  }
  65% {
    width: 30px;
    right: 8px;
    top: 20px;
  }
  100% {
    width: 25px;
    right: 10px;
    top: 22px;
  }
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.1;
  }
}
.inspection-description {
  font-size: 0.875rem;
  color: #333333;
  margin-bottom: 0.25rem;
  line-height: 1.5;
}
.view-agreement-link {
  font-size: 0.875rem;
  color: #0073aa;
  text-decoration: none;
  margin-bottom: 0.75rem;
  display: inline-block;
  transition: color 0.2s ease-in-out;
}
.view-agreement-link:hover {
  text-decoration: underline;
}
.recommended {
  color: #dc3545;
  font-weight: 700;
}
.agreement-modal-content {
  max-height: 80vh;
  overflow-y: auto;
  padding: 1.5rem;
  font-size: 0.875rem;
}
.agreement-modal-content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.agreement-modal-content h4 {
  font-size: 1rem;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  color: #2c3e50;
}
.agreement-modal-content ul, .agreement-modal-content ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.agreement-modal-content li {
  margin-bottom: 0.5rem;
}
.agreement-modal-content hr {
  border: 0;
  border-top: 1px solid #eeeeee;
  margin: 1.25rem 0;
}
.agreement-modal-content strong {
  font-weight: 600;
}
.agreement-modal-content .agreement-footer {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .agreement-modal-content {
    padding: 1.25rem;
    font-size: 0.875rem;
  }
  .agreement-modal-content h3 {
    font-size: 1.125rem;
  }
  .agreement-modal-content h4 {
    font-size: 1rem;
  }
  .inspection-description, .view-agreement-link {
    font-size: 0.875rem;
  }
}
#as-policy-section .as-policy-content-wrapper {
  position: relative;
}
#as-policy-section .as-policy-image {
  text-align: center;
  margin-top: 1.25rem;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
#as-policy-section .as-policy-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
#as-policy-section .as-policy-image.expanded {
  max-height: 2000px;
}
#as-policy-section .toggle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  color: #ffffff;
  background-color: #333333;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  background-color: #333333;
  font-size: 1rem;
}
#as-policy-section .toggle-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#as-policy-section .toggle-button:hover:not(:disabled) {
  background-color: #222222;
}
#as-policy-section .toggle-button:active:not(:disabled) {
  background-color: #111111;
}
#as-policy-section .toggle-button:hover:not(:disabled) {
  background-color: #222222;
}
#installation-fee-container {
  margin-top: 1.25rem;
  padding: 1rem;
  background-color: #fafafa;
  border: 1px solid #eeeeee;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}
#installation-fee-container .installation-fee-display {
  text-align: center;
}
#installation-fee-container .installation-fee-display h4 {
  margin: 0 0 0.75rem 0;
  color: #222222;
  font-size: 1.125rem;
  font-weight: 600;
}
#installation-fee-container .installation-fee-display .fee-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin: 0.75rem 0;
  padding: 0.75rem;
  background-color: #ffffff;
  border: 2px solid #333333;
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
#installation-fee-container .installation-fee-display .fee-amount:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
}
#installation-fee-container .installation-fee-display .fee-amount .fee-original.strikethrough {
  text-decoration: line-through;
  color: #999;
}
#installation-fee-container .installation-fee-display .fee-amount .fee-prepaid {
  color: #4CAF50;
  font-weight: bold;
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
}
#installation-fee-container .installation-fee-display .fee-note {
  margin: 0.75rem 0 0 0;
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.5;
}
@media (max-width: 480px) {
  #installation-fee-container {
    margin-top: 1rem;
    padding: 0.75rem;
  }
  #installation-fee-container .installation-fee-display h4 {
    font-size: 1rem;
  }
  #installation-fee-container .installation-fee-display .fee-amount {
    font-size: 1.25rem;
    padding: 0.75rem;
  }
  #installation-fee-container .installation-fee-display .fee-note {
    font-size: 0.75rem;
  }
}
.install-info-message .fee-original.strikethrough {
  text-decoration: line-through;
  color: #999;
}
.install-info-message .fee-prepaid {
  color: #4CAF50;
  font-weight: bold;
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
}
