/* =========================================================
   ASH KT — SCROLL TO TOP BUTTON
   (Har page par available, wp_footer hook se load hota hai)
   ========================================================= */

.ashkt-scroll-top {
    position: fixed;

    right: 24px;
    bottom: 24px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ashkt-primary);
    color: var(--ashkt-white);

    border: 0;
    border-radius: 50%;

    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.20);

    font-size: 1.2rem;

    cursor: pointer;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background-color 0.2s ease;
}

.ashkt-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.ashkt-scroll-top:hover {
    background: var(--ashkt-gold);
}


/* Mobile — thoda chhota aur neeche shift */

@media (max-width: 480px) {

    .ashkt-scroll-top {
        right: 16px;
        bottom: 16px;

        width: 42px;
        height: 42px;

        font-size: 1.05rem;
    }
}