.ac-loyalty-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.ac-loyalty-container.inline {
    display: inline-flex;
}

.ac-loyalty-label {
    font-weight: 600;
    color: #333;
}

.ac-loyalty-badge {
    display: inline-block;
    padding: 6px 16px 5px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.ac-loyalty-brons {
    background: linear-gradient(135deg, #CD7F32, #B87333);
    color: white;
}

.ac-loyalty-zilver {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: #333;
}

.ac-loyalty-goud {
    background: linear-gradient(135deg, #FFD700, #FFC700);
    color: #333;
}

.ac-loyalty-platinum {
    background: linear-gradient(135deg, #E5E4E2, #D4D4D4);
    color: #333;
}

.ac-loyalty-none {
    background: #f0f0f0;
    color: #666;
}

.ac-loyalty-refresh {
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ac-loyalty-refresh:hover {
    background: #f0f0f0;
    border-color: #bbb;
}

.ac-loyalty-refresh.loading {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

@media (max-width: 600px) {
    .ac-loyalty-container {
        flex-wrap: wrap;
    }
    
    .ac-loyalty-badge {
        font-size: 12px;
        padding: 4px 12px;
    }
}