﻿.loyalty-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: /*flex*/none;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #c5a059 0%, #ecd391 100%);
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    text-decoration: none;
    color: #1a1a1a;
    /*font-family: 'Open Sans', sans-serif;*/
    font-weight: 700;
    font-size: 14px;
    text-transform: none;
    transition: all 0.3s ease-in-out;
}

.loyalty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

    .loyalty-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.loyalty-bubble:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(197, 160, 89, 0.3);
    filter: saturate(1.2);
}

@media (max-width: 480px) {
    .loyalty-bubble {
        bottom: 20px;
        right: 20px;
        padding: 8px 16px;
    }
}
