/**
 * Top Profiles Lock Styles
 * Styles for locked profile indicators
 */

/* Locked profile overlay */
.ethos-profile-locked {
    position: relative;
    opacity: 0.6;
}

.ethos-profile-locked::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 2;
    pointer-events: none;
    border-radius: 4px;
}

.ethos-profile-locked .user-profile-link {
    pointer-events: none;
    cursor: not-allowed;
    position: relative;
}

/* Lock badge */
.ethos-lock-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color, #e9463b);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ethos-lock-badge i {
    font-size: 14px;
}

/* Lock icon overlay */
.ethos-lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(233, 70, 59, 0.95);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    z-index: 12;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.ethos-lock-overlay i {
    font-size: 24px;
}

/* Disable link hover effects for locked profiles */
.ethos-profile-locked .user-profile-link:hover {
    text-decoration: none;
    color: inherit;
    background-color: inherit;
}

/* Ensure locked profiles are visually distinct */
.ethos-profile-locked .profile-listing-search-wrapper {
    filter: grayscale(30%);
}

