
/* ===== Scroll to top button ===== */

.dp-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 26px;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffd43b 0%, #f4c21f 100%);
  color: #071a33;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.28),
    0 6px 18px rgba(244, 194, 31, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.92);
  transition:
    opacity .22s ease,
    visibility .22s ease,
    transform .22s ease,
    box-shadow .18s ease;
}

.dp-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dp-scroll-top:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.34),
    0 8px 24px rgba(244, 194, 31, 0.34);
}

.dp-scroll-top:active {
  transform: translateY(0) scale(0.96);
}

.dp-scroll-top svg {
  width: 26px;
  height: 26px;
  stroke-width: 3;
}

@media (max-width: 700px) {
  .dp-scroll-top {
    right: 16px;
    bottom: 18px;
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .dp-scroll-top svg {
    width: 24px;
    height: 24px;
  }
}


.dp-scroll-top svg path {
  stroke: currentColor !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
