.response-wish {
  display: grid;
  gap: 10px;
  margin: 12px 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(99, 230, 184, .07));
}

.wish-head,
.assistant-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.wish-head strong {
  color: #ffe9a6;
  font-family: var(--font-cute);
  font-size: 13px;
  font-weight: 400;
}

.wish-chip-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.wish-chip-row button {
  min-height: 36px;
  padding: 8px 5px !important;
  color: #dceaff !important;
  background: rgba(255, 255, 255, .07) !important;
  box-shadow: none !important;
  font-size: 12px !important;
}

.wish-chip-row button.active {
  color: #102033 !important;
  background: linear-gradient(180deg, #fff8d7, #dafcff) !important;
}

.response-wish textarea {
  min-height: 66px;
  font-size: 14px;
  background: linear-gradient(180deg, #fffaf2, #e9fff7);
}

.reply-assistant {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 12px 0 4px;
  padding: 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 225, 122, .28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 225, 122, .24), transparent 34%),
    linear-gradient(145deg, rgba(40, 22, 46, .86), rgba(8, 25, 43, .9));
}

.reply-assistant::before {
  content: "";
  position: absolute;
  width: 98px;
  height: 98px;
  right: -34px;
  top: -40px;
  border: 1px dashed rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.reply-assistant > * {
  position: relative;
  z-index: 1;
}

.assistant-head span {
  padding: 6px 9px;
  border-radius: 999px;
  color: #123047;
  background: linear-gradient(180deg, #fff4c2, #bfffea);
  font-family: var(--font-cute);
  font-size: 12px;
  font-weight: 400;
}

.assistant-head strong {
  color: #fff;
  font-family: var(--font-cute);
  font-size: 18px;
  font-weight: 400;
}

.reply-assistant p {
  color: #dce9f7 !important;
  font-size: 13px !important;
  line-height: 1.62 !important;
}

.assistant-preview {
  display: grid;
  gap: 4px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

.assistant-preview span {
  color: var(--mint);
  font-family: var(--font-cute);
  font-size: 12px;
  font-weight: 400;
}

.assistant-preview p {
  color: #fffaf0 !important;
  font-size: 14px !important;
}

.assistant-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.assistant-actions button {
  min-height: 38px;
  padding: 8px 7px !important;
  font-size: 12px !important;
}

@media (max-width: 390px) {
  .wish-chip-row,
  .assistant-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assistant-actions .primary {
    grid-column: 1 / -1;
  }
}
