/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .blurred-profile-image {
    filter: blur(14px);
    transform: scale(1.05);
}

.blurred-meetme-profile-image{
    filter: blur(14px);
    transform: scale(0.95);
}

.profile-blur {
    filter: blur(10px);
    transition: 0.3s ease;
}

.blocked-image {
    cursor: default;
}


.unlock-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.unlock-modal-content {
    background: #fff;
    width: 320px;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: pop 0.25s ease;
}

@keyframes pop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.unlock-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.unlock-btn {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
}

/* .cancel-unlock-btn {
    margin-top: 8px;
    background: transparent;
    border: none;
    color: #555;
    cursor: pointer;
} */

button.cancel-unlock-btn {
    margin-top: 8px;
    background-color: transparent !important;
    border: none;
    color: var(--color-primary)!important;
    cursor: pointer;
}

button.cancel-unlock-btn:hover {color: var(--color-primary) !important;}


.gallery-item {
    position: relative;
    display: block;
}

.image-bg {
    display: block;
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

/* Blur effect */
.gallery-blur {
    filter: blur(12px);
}

/* Overlay */
.gallery-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}


.gallery-unlock-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.gallery-unlock-modal-content {
    background: #fff;
    width: 320px;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: pop 0.25s ease;
}

.cover-blur {
    filter: blur(14px);
}


/* .profile-cover-image.overlay {
    pointer-events: none !important;
}

.cover-lock-overlay {
    pointer-events: auto;
} */


.cover-unlock-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.cover-unlock-modal-content {
    background: #fff;
    width: 320px;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: pop 0.25s ease;
}

.profile-country{
    display: none !important;
}



.profile-cover-photo {
    position: relative;
}

/* Overlay container */
.view-cover-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10; /* VERY IMPORTANT */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Show on hover */
.wpee-profile-header:hover .view-cover-photo {
    opacity: 1;
    visibility: visible;
}

/* Optional styling */
.view-cover-photo h1 {
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
}

.view-cover-profile-photo a{
   background-color: #FFF8F0;
    border: 1px solid #FFF8F0;
    color: #7B6257;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
