.web-back-button {
    position: fixed;
    top: 10px;
    left: 12px;
    z-index: 3200;
    display: none;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #8b6f47 0%, #654321 100%);
    color: #faf5eb;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(101, 67, 33, 0.35);
}

.web-back-button.is-visible {
    display: inline-flex;
}

.web-back-button:active {
    transform: translateY(1px);
}

.web-back-button i {
    font-size: 14px;
}

body.is-web-mobile .web-back-button {
    top: 70px;
    left: 12px;
}

@media (min-width: 1024px) {
    body.is-web-desktop .web-back-button {
        top: 76px;
        left: max(16px, calc((100vw - 1360px) / 2 + 16px));
    }
}
