.app-toast {
  width: calc(100% - 24px);
  max-width: 776px;
  height: auto;
  padding: 12px;
  background: var(--bg-page);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
}

.toast-content {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.toast-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-soft-bg);
  color: var(--accent);
  border-radius: 12px;
  border: 1px solid var(--accent-soft-border);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-text {
  color: var(--text-primary);
  font-weight: bold;
  font-size: 12px;
}

.icon-button,
.soft-button,
.primary-button,
.cta-button {
  min-width: 40px;
  height: 40px;
  padding: 12px;
  background: var(--bg-page);
  color: var(--text-primary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.primary-button,
.cta-button {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-page);
}

.soft-button {
  background: var(--accent-soft-bg);
  color: var(--accent);
  border-color: var(--accent-soft-border);
}

.link-button {
  background: transparent;
  color: var(--accent);
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gallery-card {
  background: var(--bg-page);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}

.gallery-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gallery-dot-bg);
  border: 1px solid var(--border-color);
}

.gallery-dot.active {
  background: var(--accent);
  border-color: var(--accent);
}

.help-panel {
  border: 1px solid var(--accent-soft-border);
  background: var(--accent-soft-bg);
  border-radius: 12px;
  padding: 12px;
}

.help-list {
  padding-right: 18px;
  color: var(--text-muted);
  font-size: 12px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.text-area-input {
  width: 100%;
  min-height: 80px;
  padding: 12px;
  background: var(--bg-page);
  color: var(--text-high);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  font-size: 15px;
  resize: vertical;
}

.text-area-input::placeholder {
  color: var(--text-muted);
}

.chips-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.chips-dates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.chips-times {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.chip-select {
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  background: var(--surface-subtle);
  color: var(--text-primary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  font-size: 12px;
  font-weight: bold;
}

.chip-select.selected {
  background: var(--accent-soft-bg);
  border-color: var(--accent-strong-border);
}

.chip-select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.chip {
  padding: 12px;
  background: var(--surface-subtle);
  color: var(--text-primary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  font-size: 12px;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: right;
  gap: 10px;
  min-height: 40px;
}

.chip .chip-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-page);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 10px;
}

.chip.selected {
  background: var(--accent-soft-bg);
  border-color: var(--accent-strong-border);
}

.chip.selected .chip-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-page);
}

.summary-panel {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px;
  background: var(--surface-subtle);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.summary-label {
  font-weight: bold;
  color: var(--text-strong);
}

.helper-text {
  color: var(--text-muted);
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.faq-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px;
  background: var(--surface-subtle);
}

.faq-item summary {
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-q i {
  color: var(--text-high);
}

.faq-chevron {
  color: var(--text-muted);
  transition: transform 160ms ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-item p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 12px;
}
