/**
 * WC Club Loyalty - Frontend Stílusok (Bootstrap 5 kiegészítés)
 */

.wcl-club-badge {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
    font-size: 0.95rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.wcl-restricted-action-wrapper .wcl-trigger-modal-btn {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border: none;
    color: #212529;
    font-size: 1.05rem;
    transition: all 0.2s ease-in-out;
}

.wcl-restricted-action-wrapper .wcl-trigger-modal-btn:hover {
    background: linear-gradient(135deg, #e0a800 0%, #e68900 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 152, 0, 0.3) !important;
}

.wcl-loop-btn {
    background-color: #ffc107 !important;
    color: #212529 !important;
    font-weight: 600 !important;
}

.wcl-modal .modal-content {
    border-radius: 12px;
    overflow: hidden;
}

.wcl-modal .progress {
    background-color: #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.wcl-modal .progress-bar {
    transition: width 0.6s ease;
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid #dee2e6;
    }
}

/* ==========================================
 * Saját Fiók (My Account) Klubkártyák
 * ========================================== */
.wcl-club-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.wcl-club-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.08) !important;
}

.wcl-club-card.wcl-card-active {
    border-top: 4px solid #198754 !important;
}

.wcl-club-card.wcl-card-inactive {
    border-top: 4px solid #6c757d !important;
}

.wcl-club-card .progress {
    background-color: #f0f2f5;
    border-radius: 6px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.wcl-club-card .progress-bar {
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

