/* ================= GLOBAL HOME BUTTON ================= */

.global-home {
    position: fixed;
    top: 15px;
    left: 15px;

    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    color: #000;

    z-index: 9999;
    font-family: 'Mulish', sans-serif;
}

/* square container */
.home-icon-box {
    width: 30px;
    height: 30px;

    border: 1.5px solid #000;
    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f2f2f2;

    transition: transform 0.25s ease;
}

/* icon */
.home-icon-box img {
    width: 18px;
    height: 18px;
    display: block;
}

/* label */
.home-label {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;

    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

/* hover behavior */
.global-home:hover .home-label {
    opacity: 1;
    transform: translateX(0);
}
