/* ——— Call confirm (Call Us Now) ——— */
.call-confirm {
  z-index: 320;
}

.call-confirm__panel {
  width: min(400px, 100%);
  max-height: none;
}

.call-confirm__body {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.call-confirm__body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #2a2a2a;
}

.call-confirm__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.call-confirm__cancel {
  border: 1.5px solid #d0d0d0;
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.call-confirm__cancel:hover {
  border-color: var(--black);
  background: #f5f5f5;
}

.call-confirm__agree {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--white);
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.call-confirm__agree:hover {
  opacity: 0.92;
}

body.call-confirm-open {
  overflow: hidden;
}
