/* Sticky QR Code */
.sticky-qr {
    position: fixed;
    bottom: 85px;
    right: 30px;
    z-index: 2000;
    background: white;
    padding: 5px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--theme-color);
    animation: slideUp 0.5s ease;
}

.sticky-qr:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(238, 136, 1, 0.2);
}

.sticky-qr img {
    border-radius: 8px;
    width: 200px;
    height: 200px;
    object-fit: contain;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sticky Mobile Download Buttons */
.sticky-mobile-buttons {
    position: fixed;
    bottom: 80px;
    right: 15px;
    z-index: 2000;
    animation: slideUp 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
    /* Allow clicks to pass through empty space */
}

.sticky-mobile-buttons .btn {
    min-width: 135px;
    padding: 6px 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    border-radius: 10px;
    pointer-events: auto;
    /* Re-enable clicks on the buttons ourselves */
}

.sticky-mobile-buttons .btn span small {
    font-size: 8px !important;
    font-weight: 500;
}

.sticky-mobile-buttons .btn span .font-bold {
    font-size: 13px !important;
    display: block;
    line-height: 1.2;
}

.sticky-mobile-buttons .btn-hero {
    background: var(--theme-color, #ee8801) !important;
    border: none !important;
    color: white !important;
}

.sticky-mobile-buttons .btn-outline1 {
    background: white !important;
    color: #000 !important;
    border: 1px solid #eee !important;
}