/* Profile Picture Styles - Frontend Display */

/* Square profile pictures on frontend by default */
.lightworker-profile-picture,
.lwc-profile-picture,
.profile-picture {
    border-radius: 0;
    overflow: hidden;
    object-fit: cover;
}

/* Profile picture in Elementor loop grid - square */
.elementor-loop-container .lightworker-profile-picture,
.elementor-loop-container img[class*="profile"] {
    border-radius: 0;
}

/* Featured image as profile picture - square */
.lightworker .entry-thumbnail img,
.single-lightworker .post-thumbnail img {
    border-radius: 0;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

/* Profile picture in archive/listing pages - square */
.archive.post-type-archive-lightworker .entry-thumbnail img {
    border-radius: 0;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* Profile placeholder - square on frontend */
.profile-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 0;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.profile-placeholder svg {
    color: #ccc;
}

/* Elementor dynamic content support - square */
.elementor-widget-theme-post-featured-image img {
    border-radius: 0;
}

/* Small profile pictures - square */
.lightworker-profile-picture.size-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 0;
}

/* Medium profile pictures - square */
.lightworker-profile-picture.size-medium {
    width: 150px;
    height: 150px;
    border-radius: 0;
}

/* Large profile pictures - square */
.lightworker-profile-picture.size-large {
    width: 200px;
    height: 200px;
    border-radius: 0;
}

/* ========================================
   ROUNDED ONLY IN DASHBOARD/MY ACCOUNT
   ======================================== */

/* My Account page - rounded profile picture */
.woocommerce-account .profile-picture-circle,
.woocommerce-account .profile-picture-circle img,
.woocommerce-EditAccountForm .profile-picture-circle,
.woocommerce-EditAccountForm .profile-picture-circle img {
    border-radius: 50% !important;
}

/* Admin backend - rounded profile picture */
.lwc-admin-profile-circle,
.lwc-admin-profile-circle img {
    border-radius: 50% !important;
}

/* Customer dashboard - rounded */
.lwc-customer-dashboard .profile-picture,
.lwc-customer-dashboard .profile-picture img {
    border-radius: 50% !important;
}

/* Lightworker dashboard - rounded */
.lwd-dashboard .profile-avatar,
.lwd-dashboard-header .profile-avatar,
.lwd-profile-head .profile-avatar {
    border-radius: 50% !important;
    width: 120px;
    height: 120px;
    object-fit: cover;
}
