.pp-quick-call-section .pp-quick-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: fit-content;
  max-width: 100%;
  margin: 30px auto 0;
  padding: 24px;
  border: 1px solid #e7e5e4;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 3px 5px #00000015;
  box-sizing: border-box;
}
.pp-quick-call-section .pp-quick-call p {
  margin: 0;
  color: #2b1911;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}
.pp-quick-call-section .pp-quick-call-button {
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin: 0;
  padding: 10px 20px;
  border-radius: 8px;
  background: #f54a00;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  box-sizing: border-box;
  transition:
    background-color 0.2s,
    transform 0.2s;
}
.pp-quick-call-section .pp-quick-call-button::before {
  content: "";
  display: block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: var(--pp-qc-icon) center/contain no-repeat;
  mask: var(--pp-qc-icon) center/contain no-repeat;
  animation: pp-qc-ring 1.2s infinite;
}
.pp-quick-call-section .pp-quick-call-button:hover {
  background: #cf3e00;
  color: #fff;
}
.pp-quick-call-section .pp-quick-call-button:focus-visible {
  outline: 3px solid #7c2d12;
  outline-offset: 4px;
}
.pp-quick-call-section .pp-quick-call-button:active {
  transform: scale(0.98);
}
@keyframes pp-qc-ring {
  0%,
  100% {
    transform: rotate(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: rotate(-10deg);
  }
  20%,
  40%,
  60%,
  80% {
    transform: rotate(10deg);
  }
}
@media (max-width: 767px) {
  .pp-quick-call-section .pp-quick-call {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    padding: 20px;
    text-align: center;
    margin-top: 18px;
  }
  .pp-quick-call-section .pp-quick-call-button {
    width: 100%;
    min-height: 46px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pp-quick-call-section .pp-quick-call-button,
  .pp-quick-call-section .pp-quick-call-button::before {
    animation: none;
    transition: none;
  }
}
.pp-quick-call-section {
  --pp-qc-icon: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M22%2016.92v3a2%202%200%200%201-2.18%202%2019.79%2019.79%200%200%201-8.63-3.07%2019.5%2019.5%200%200%201-6-6%2019.79%2019.79%200%200%201-3.07-8.67A2%202%200%200%201%204.11%202h3a2%202%200%200%201%202%201.72c.13.96.36%201.9.69%202.79a2%202%200%200%201-.45%202.11L8.09%209.89a16%2016%200%200%200%206%206l1.27-1.27a2%202%200%200%201%202.11-.45c.89.33%201.83.56%202.79.69A2%202%200%200%201%2022%2016.92z%22%2F%3E%3Cpath%20d%3D%22M14%202a8%208%200%200%201%208%208M14%206a4%204%200%200%201%204%204%22%2F%3E%3C%2Fsvg%3E");
}
