/* -----------------------------
   Premium Avatar Card Layout
------------------------------ */
.woocommerce-avatar-section {
    margin: 25px 0;
}

.avatar-card {
    padding: 15px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    max-width: 380px;
}

.avatar-preview-wrap {
    width: 110px;
    height: 110px;
    margin: 0 auto 12px auto;
    border-radius: 50%;
    border: 3px solid #f0f0f0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-preview-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons layout */
.avatar-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

/* -----------------------------
   Drag & Drop Zone
------------------------------ */
.avatar-dropzone {
    text-align: center;
    padding: 20px;
    border: 2px dashed #d0d0d0;
    border-radius: 12px;
    background: #fafafa;
    cursor: pointer;
    transition: 0.25s ease;
}

.avatar-dropzone:hover {
    border-color: #8b6cff;
    background: #f7f3ff;
}

.avatar-dropzone.drag-hover {
    border-color: #7645ff;
    background: #efe7ff;
}

/* Status message */
#jh-avatar-msg {
    font-weight: 500;
}

/* -----------------------------
   Cropper Modal Styles
------------------------------ */
#jhCropModal img {
    max-width: 100%;
    border-radius: 12px;
}

.modal-content {
    border-radius: 16px;
}
