.customer-messages-section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(215, 154, 59, .24);
}

.customer-messages-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.customer-messages-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 500;
}

.customer-messages-heading p:last-child {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
  font: 500 .88rem/1.55 ui-sans-serif, system-ui, sans-serif;
}

.customer-messages-list {
  display: grid;
  gap: 16px;
}

.customer-message-card {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 28px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(40, 29, 23, .96), rgba(20, 15, 13, .99));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.customer-message-card.is-target {
  border-color: rgba(240, 187, 103, .8);
  box-shadow: 0 0 0 3px rgba(215, 154, 59, .12), 0 18px 50px rgba(0, 0, 0, .22);
}

.customer-message-card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.customer-message-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.customer-message-order {
  margin: 6px 0 0;
  color: var(--gold-light);
  font: 700 .76rem/1.35 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .04em;
}

.customer-message-date {
  color: var(--muted);
  font: 600 .76rem/1.4 ui-sans-serif, system-ui, sans-serif;
  white-space: nowrap;
}

.customer-message-original,
.customer-message-reply {
  padding: 16px 18px;
  border: 1px solid rgba(215, 154, 59, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .02);
}

.customer-message-reply {
  border-color: rgba(215, 154, 59, .34);
  background: rgba(215, 154, 59, .065);
}

.customer-message-original strong,
.customer-message-reply strong {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-light);
  font: 800 .73rem/1.2 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.customer-message-original p,
.customer-message-reply p {
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.65;
}

.customer-message-reply time {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font: 600 .73rem/1.35 ui-sans-serif, system-ui, sans-serif;
}

.customer-message-waiting {
  margin: 0;
  color: var(--muted);
  font: 500 .84rem/1.5 ui-sans-serif, system-ui, sans-serif;
}

.customer-messages-actions {
  margin-top: 18px;
}

.customer-messages-status {
  min-height: 1.4em;
  margin: 0 0 12px;
  color: var(--muted);
  font: 500 .86rem/1.5 ui-sans-serif, system-ui, sans-serif;
}
.customer-messages-status.is-error { color: var(--danger); }

@media (max-width: 620px) {
  .customer-messages-heading,
  .customer-message-card-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .customer-message-date { white-space: normal; }
}
