/* ================================================
   XHTMLTEAM — Go To Top Button Styles
   Prefix: xgt- (no clashes with existing styles)
   Paste into your existing stylesheet or link separately
   ================================================ */

/* ── Button ───────────────────────────────────── */
.xgt-btn {
  position: fixed;

  /* ── POSITION — uncomment one option ─────────
     Bottom-right (default):
       bottom: 40px; right: 40px;
     Bottom-centre:
       bottom: 40px; left: 50%; transform: translateX(-50%);
     Bottom-left:
       bottom: 40px; left: 40px;
  ─────────────────────────────────────────────── */
  bottom: 300px;
  right: 10px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;

  background: #ebebeb;
    border: 1px solid #999;
  color: #070013;
  border: none;
  border-radius: 14px;
  padding: 14px 18px;
  font-family: inherit;
  cursor: pointer;
  z-index: 9999;

  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease,
              visibility 0.3s ease,
              transform 0.3s ease,
              background 0.2s ease;
}

/* ── Visible state (added by JS on scroll) ────── */
.xgt-btn.xgt-visible {
  opacity: 0.85;
  visibility: visible;
  transform: translateY(0);
}

/* ── Hover ────────────────────────────────────── */
.xgt-btn:hover {
  background: #B1EB1C;
}

/* ── Click ────────────────────────────────────── */
.xgt-btn:active {
  transform: translateY(2px);
}

/* ── Arrow icon ───────────────────────────────── */
.xgt-arrow {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke-width: 2.8;
}

/* ── Label ────────────────────────────────────── */
.xgt-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ── Mobile ───────────────────────────────────── */
@media (max-width: 640px) {
  .xgt-btn {
    bottom: 100px;
    right: 24px;
    padding: 12px 18px;
    border-radius: 12px;
  }

  .xgt-label {
    font-size: 13px;
  }
}
