/* Nút về đầu trang cố định góc phải dưới */
.back-to-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 999px;
    background: #c1272d; /* xám đậm */
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .back-to-top:hover,
  .back-to-top:focus-visible {
    background: #0ea5e9;
    outline: none;
  }
  .back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Biểu tượng mũi tên */
  .back-to-top svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
  }

  /* Hỗ trợ người dùng hạn chế chuyển động */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .back-to-top { transition: none; }
  }