@charset "UTF-8";
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #495057;
  font-size: 0.875rem;
}
.form-group.required label::after {
  content: " *";
  color: #dc3545;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  transition: all 0.15s ease-in-out;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: rgb(127.5, 189, 255);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control::placeholder {
  color: #adb5bd;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control.is-invalid {
  border-color: #dc3545;
}
.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.form-control.is-valid {
  border-color: #28a745;
}
.form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control:not([multiple]):not([size]) {
  height: calc(2.25rem + 2px);
}

.form-control-file {
  display: block;
  width: 100%;
}

.form-control-sm {
  padding: 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.form-control-lg {
  padding: 1rem;
  font-size: 1.125rem;
  border-radius: 0.5rem;
}

.bottom-sheet h1, .bottom-sheet h2, .bottom-sheet h3, .bottom-sheet h4, .bottom-sheet h5, .bottom-sheet h6 {
  margin: 0 0 0.75rem 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #343a40;
}
.bottom-sheet h1 {
  font-size: 2rem;
}
.bottom-sheet h2 {
  font-size: 1.75rem;
}
.bottom-sheet h3 {
  font-size: 1.5rem;
}
.bottom-sheet h4 {
  font-size: 1.25rem;
}
.bottom-sheet h5 {
  font-size: 1.125rem;
}
.bottom-sheet h6 {
  font-size: 1rem;
}
.bottom-sheet p {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
}
.bottom-sheet span {
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
}
.bottom-sheet small {
  font-size: 0.875rem;
  color: #6c757d;
}
.bottom-sheet strong, .bottom-sheet b {
  font-weight: 600;
}
.bottom-sheet em {
  font-style: italic;
}
.bottom-sheet i {
  font-style: normal !important;
}
.bottom-sheet i[class^=fa-], .bottom-sheet i[class*=" fa-"] {
  font-style: normal !important;
}
.bottom-sheet code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875em;
  color: #e83e8c;
  background-color: #f8f9fa;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
}
.bottom-sheet pre {
  display: block;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875rem;
  color: #343a40;
  background-color: #f8f9fa;
  padding: 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #dee2e6;
  overflow-x: auto;
  margin: 0 0 1rem 0;
}
.bottom-sheet pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.bottom-sheet blockquote {
  margin: 0 0 1rem 0;
  padding: 0.75rem 1rem;
  background-color: #f8f9fa;
  border-left: 4px solid #007bff;
  border-radius: 0 0.375rem 0.375rem 0;
}
.bottom-sheet blockquote p {
  margin-bottom: 0;
  font-style: italic;
  color: #6c757d;
}
.bottom-sheet blockquote footer {
  font-size: 0.875rem;
  color: #adb5bd;
  margin-top: 0.5rem;
}
.bottom-sheet blockquote footer::before {
  content: "— ";
}
.bottom-sheet ul, .bottom-sheet ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}
.bottom-sheet ul li, .bottom-sheet ol li {
  margin-bottom: 0.25rem;
  line-height: 1.5;
  color: #495057;
}
.bottom-sheet ul ul, .bottom-sheet ul ol, .bottom-sheet ol ul, .bottom-sheet ol ol {
  margin-bottom: 0.5rem;
}
.bottom-sheet ul {
  list-style-type: disc;
}
.bottom-sheet ul ul {
  list-style-type: circle;
}
.bottom-sheet ul ul ul {
  list-style-type: square;
}
.bottom-sheet ol {
  list-style-type: decimal;
}
.bottom-sheet ol ol {
  list-style-type: lower-alpha;
}
.bottom-sheet ol ol ol {
  list-style-type: lower-roman;
}
.bottom-sheet a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
.bottom-sheet a:hover {
  color: rgb(0, 86.1, 178.5);
  text-decoration: underline;
}
.bottom-sheet a:focus {
  outline: 2px solid rgba(0, 123, 255, 0.25);
  outline-offset: 2px;
}
.bottom-sheet hr {
  margin: 1.5rem 0;
  border: 0;
  border-top: 1px solid #dee2e6;
}
.bottom-sheet table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.bottom-sheet table th, .bottom-sheet table td {
  padding: 0.5rem 0.75rem;
  border: 1px solid #dee2e6;
  text-align: left;
  vertical-align: top;
}
.bottom-sheet table th {
  background-color: #f8f9fa;
  font-weight: 600;
}
.bottom-sheet table tbody tr:nth-child(even) {
  background-color: rgba(248, 249, 250, 0.5);
}
.bottom-sheet .text-muted {
  color: #6c757d !important;
}
.bottom-sheet .text-primary {
  color: #007bff !important;
}
.bottom-sheet .text-success {
  color: #28a745 !important;
}
.bottom-sheet .text-warning {
  color: #ffc107 !important;
}
.bottom-sheet .text-danger {
  color: #dc3545 !important;
}
.bottom-sheet .text-left {
  text-align: left !important;
}
.bottom-sheet .text-center {
  text-align: center !important;
}
.bottom-sheet .text-right {
  text-align: right !important;
}
.bottom-sheet .font-weight-light {
  font-weight: 300 !important;
}
.bottom-sheet .font-weight-normal {
  font-weight: 400 !important;
}
.bottom-sheet .font-weight-medium {
  font-weight: 500 !important;
}
.bottom-sheet .font-weight-bold {
  font-weight: 600 !important;
}
.bottom-sheet .font-size-sm {
  font-size: 0.875rem !important;
}
.bottom-sheet .font-size-base {
  font-size: 1rem !important;
}
.bottom-sheet .font-size-lg {
  font-size: 1.125rem !important;
}

.bottom-sheet .bottom-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}
.bottom-sheet .bottom-sheet-header > * {
  display: flex;
  align-items: center;
}
.bottom-sheet .bottom-sheet-header h3 {
  margin: 0;
  line-height: 1;
}
.bottom-sheet .bottom-sheet-header button {
  display: flex;
  align-items: center;
  justify-content: center;
}

#write-review-bottom-sheet .bottom-sheet-content {
  background-color: #fff;
}
#write-review-bottom-sheet .bottom-sheet-header {
  padding: 0;
  height: 56px;
  border-bottom: 1px solid #e9ecef;
  background-color: #fff;
  position: relative;
}
#write-review-bottom-sheet .bottom-sheet-header button[data-action=close] {
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 50%;
  color: #495057;
  cursor: pointer;
  transition: all 0.2s ease;
}
#write-review-bottom-sheet .bottom-sheet-header button[data-action=close]:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
#write-review-bottom-sheet .bottom-sheet-header button[data-action=close]:active {
  background-color: rgba(0, 0, 0, 0.1);
}
#write-review-bottom-sheet .bottom-sheet-header button[data-action=close] i {
  font-size: 20px;
}
#write-review-bottom-sheet .bottom-sheet-header h3 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  white-space: nowrap;
}
#write-review-bottom-sheet .bottom-sheet-header #submit-review-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  padding: 0 16px;
  background: none;
  border: none;
  color: #007bff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 18px;
  transition: all 0.2s ease;
}
#write-review-bottom-sheet .bottom-sheet-header #submit-review-btn:hover:not(:disabled) {
  background-color: rgba(0, 123, 255, 0.08);
}
#write-review-bottom-sheet .bottom-sheet-header #submit-review-btn:active:not(:disabled) {
  background-color: rgba(0, 123, 255, 0.12);
}
#write-review-bottom-sheet .bottom-sheet-header #submit-review-btn:disabled {
  color: #ced4da;
  cursor: not-allowed;
}
#write-review-bottom-sheet .bottom-sheet-body {
  padding: 0;
  background-color: #fff;
}
#write-review-bottom-sheet .review-rating-section,
#write-review-bottom-sheet .review-content-section,
#write-review-bottom-sheet .review-photo-section {
  padding: 20px 16px;
  border-bottom: 1px solid #f8f9fa;
}
#write-review-bottom-sheet .review-rating-section:last-child,
#write-review-bottom-sheet .review-content-section:last-child,
#write-review-bottom-sheet .review-photo-section:last-child {
  border-bottom: none;
}
#write-review-bottom-sheet .review-rating-section h4,
#write-review-bottom-sheet .review-content-section h4,
#write-review-bottom-sheet .review-photo-section h4 {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #212529;
}
#write-review-bottom-sheet .rating-select {
  background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}
#write-review-bottom-sheet .star-rating-input {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}
#write-review-bottom-sheet .star-rating-input i {
  font-size: 28px;
  color: #e5e7eb;
  cursor: pointer;
  margin: 0 4px;
  transition: all 0.2s ease;
}
#write-review-bottom-sheet .star-rating-input i:hover {
  color: #fbbf24;
  transform: scale(1.1);
}
#write-review-bottom-sheet .star-rating-input i.fa-star {
  color: #f59e0b;
}
#write-review-bottom-sheet .rating-text {
  font-size: 15px;
  font-weight: 500;
  color: #495057;
  margin: 0;
  letter-spacing: -0.01em;
}
#write-review-bottom-sheet .review-content-section .form-group {
  margin-bottom: 0;
}
#write-review-bottom-sheet .review-content-section textarea {
  width: 100%;
  min-height: 140px;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  resize: none; /* resize 비활성화 */
  transition: all 0.2s ease;
  background-color: #fafbfc;
}
#write-review-bottom-sheet .review-content-section textarea:hover {
  border-color: #d1d5db;
  background-color: #fff;
}
#write-review-bottom-sheet .review-content-section textarea:focus {
  outline: none;
  border-color: #007bff;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.08);
}
#write-review-bottom-sheet .review-content-section textarea::placeholder {
  color: #9ca3af;
  font-size: 15px;
}
#write-review-bottom-sheet .review-content-section .char-count {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 13px;
  color: #6b7280;
}
#write-review-bottom-sheet .review-content-section .char-count span {
  transition: color 0.2s ease;
}
#write-review-bottom-sheet .review-content-section .char-count.warning span {
  color: #ffc107;
  font-weight: 500;
}
#write-review-bottom-sheet .review-content-section .char-count.danger span {
  color: #dc3545;
  font-weight: 600;
}
#write-review-bottom-sheet .photo-upload-area {
  position: relative;
}
#write-review-bottom-sheet .photo-upload-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  color: #495057;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
#write-review-bottom-sheet .photo-upload-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.08) 0%, rgba(0, 123, 255, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
#write-review-bottom-sheet .photo-upload-btn:hover {
  border-color: #007bff;
  border-style: solid;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
#write-review-bottom-sheet .photo-upload-btn:hover::before {
  opacity: 1;
}
#write-review-bottom-sheet .photo-upload-btn:hover i {
  color: #007bff;
}
#write-review-bottom-sheet .photo-upload-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
#write-review-bottom-sheet .photo-upload-btn i {
  font-size: 20px;
  color: #9ca3af;
  transition: color 0.3s ease;
}
#write-review-bottom-sheet .photo-upload-btn span {
  position: relative;
}
#write-review-bottom-sheet .photo-preview {
  margin-top: 12px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
#write-review-bottom-sheet .photo-preview img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  display: block;
}
#write-review-bottom-sheet .photo-preview .remove-photo-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
#write-review-bottom-sheet .photo-preview .remove-photo-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}
#write-review-bottom-sheet .photo-preview .remove-photo-btn i {
  font-size: 16px;
}
#write-review-bottom-sheet .char-counter {
  text-align: right;
  font-size: 0.875rem;
  color: #adb5bd;
  margin-top: 0.25rem;
}
#write-review-bottom-sheet .char-counter.warning {
  color: #ffc107;
}
#write-review-bottom-sheet .char-counter.danger {
  color: #dc3545;
}
#write-review-bottom-sheet .form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
#write-review-bottom-sheet .form-actions .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
#write-review-bottom-sheet .form-actions .btn.btn-primary {
  background-color: #007bff;
  color: white;
}
#write-review-bottom-sheet .form-actions .btn.btn-primary:hover:not(:disabled) {
  background-color: rgb(0, 104.55, 216.75);
}
#write-review-bottom-sheet .form-actions .btn.btn-primary:disabled {
  background-color: #ced4da;
  cursor: not-allowed;
}
#write-review-bottom-sheet .form-actions .btn.btn-secondary {
  background-color: #e9ecef;
  color: #495057;
}
#write-review-bottom-sheet .form-actions .btn.btn-secondary:hover {
  background-color: #dee2e6;
}
#write-review-bottom-sheet .error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
#write-review-bottom-sheet .success-message {
  color: #28a745;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group .form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group .input-group-prepend,
.input-group .input-group-append {
  display: flex;
}
.input-group .input-group-prepend .input-group-text,
.input-group .input-group-append .input-group-text {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #adb5bd;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
}
.input-group .input-group-prepend {
  margin-right: -1px;
}
.input-group .input-group-prepend .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group .input-group-append {
  margin-left: -1px;
}
.input-group .input-group-append .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group .input-group-prepend + .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group .form-control + .input-group-append .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}
.custom-control .custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.custom-control .custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}
.custom-control .custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-control .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: rgb(127.5, 189, 255);
}
.custom-control .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: rgb(178.5, 215.4, 255);
  border-color: rgb(178.5, 215.4, 255);
}
.custom-control .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}
.custom-control .custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control .custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 1px solid #ced4da;
}
.custom-control .custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='m6.564.75-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

@media (max-width: 576px) {
  #write-review-bottom-sheet .bottom-sheet-content {
    padding: 1rem;
  }
  #write-review-bottom-sheet .bottom-sheet-header {
    padding: 0.75rem 1rem;
  }
  #write-review-bottom-sheet .form-actions .btn {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
  }
  #write-review-bottom-sheet .star-rating .star {
    font-size: 1.25rem;
  }
}

/*# sourceMappingURL=form.css.map */